Merge branch 'master' into terminal_strip

* master: (21 commits)
  Minor: remove spaces in filenames
  minor: remove capital letters
  Add new symbols Fibaro, thanks Bertus
  Update Hungarian translation, thanks Gubányi
  modified:   lang/qet_nl.qm 	modified:   lang/qet_nl.ts
  Add preprocessor to check Qt version
  Update *TS files
  Add possibility to user to choose hdpi round policy
  Minor improvement for function QETApp::customElementsDir() and QETApp::commonElementsDir()
  Add new GCE symbol
  Flatpak: update qet_tb_generator to version 1.3.1
  Add new symbol nodemcu_v3, thanks Bertus
  Add new symbols
  ci: Build edge snaps on GitHub & release to store
  snap: Port to core20
  Flatpak update qet_tb_generator to 1.3.0 version
  Fix typo in URL
  SNAP change Github source to https://github.com/raulroda/qet_tb_generator-plugin
  modified:   lang/qet_nl.qm 	modified:   lang/qet_nl.ts
  upgraded elements and renamed company
  ...
This commit is contained in:
joshua
2021-12-11 21:27:34 +01:00
90 changed files with 10301 additions and 3592 deletions
+21
View File
@@ -0,0 +1,21 @@
name: Publish Edge Snap
on:
push:
branches:
- master
jobs:
publish_amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: snapcore/action-build@v1
id: build
with:
snapcraft-args: --enable-experimental-extensions
- uses: snapcore/action-publish@v1
with:
store_login: ${{ secrets.STORE_LOGIN }}
snap: ${{ steps.build.outputs.snap }}
release: edge
@@ -100,8 +100,8 @@
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/45/be/d5940d365ebf256e490bc6c10837244e0b8dda08a7d790691767263c318d/qet_tb_generator-1.2.5.tar.gz",
"sha256": "37c3298602244f3152fbb7601caba9b4862bac782991fbb472eab91afb70d09c"
"url": "https://files.pythonhosted.org/packages/70/aa/ebde0dddfbde799a4e8cf0564e52f95089105a7f562739ee1d16ff5a495a/qet_tb_generator-1.3.1.tar.gz",
"sha256": "52c9836387d54bc30ea29272068ec156fc65c3905e0cb863afd9418abc3c0907"
}
]
}
@@ -1,13 +1,15 @@
#!/bin/sh
# a KDE session forces the KDE Plasma platformtheme which is incompatible with QET
# unset the ENV vars in that case to prevent loading of the theme
if [ ! -z "$KDE_FULL_SESSION" ]; then
unset KDE_FULL_SESSION
fi
if echo "$XDG_CURRENT_DESKTOP" | grep -q KDE; then
unset XDG_CURRENT_DESKTOP
# check if _only_ the correct framework snap is connected
framework_name=$(grep "name:" $SNAP/kf5/meta/snap.yaml | cut -d" " -f2)
if [ "$framework_name" != "kde-frameworks-5-qt-5-15-3-core20" ]; then
downloads_dir=$(xdg-user-dir DOWNLOAD)
test ! -d "$downloads_dir" && mkdir -p "$downloads_dir"
instructions_file="snap.qelectrotech.update-instructions.html"
target="$downloads_dir/$instructions_file"
cp "$SNAP/update-instructions/$instructions_file" "$target"
xdg-open "$target"
exit 1
fi
# migrate .qet directory from SNAP_USER_DATA to SNAP_USER_COMMON
@@ -23,12 +25,4 @@ fi
mkdir -p "$HOME/.qet"
ln -snf "$SNAP/bin/DXFtoQET" "$HOME/.qet/DXFtoQET"
# start desktop portal. Open & save dialogs might fail if it is not running
dbus-send --print-reply \
--dest=org.freedesktop.DBus \
/org/freedesktop/DBus \
org.freedesktop.DBus.StartServiceByName \
string:org.freedesktop.portal.Desktop \
uint32:0
exec "${@}"
File diff suppressed because one or more lines are too long
+27 -18
View File
@@ -1,6 +1,6 @@
name: qelectrotech
title: QElectroTech
base: core18
base: core20
adopt-info: qelectrotech
license: GPL-2.0
summary: Electrical diagram editor
@@ -10,6 +10,7 @@ description: |
grade: stable
confinement: strict
compression: lzo
architectures:
- build-on: amd64
@@ -30,15 +31,14 @@ apps:
extensions: [kde-neon]
plugs: &plugs [opengl, unity7, home, removable-media, gsettings, network, cups-control]
environment: &env
__EGL_VENDOR_LIBRARY_DIRS: $SNAP/kf5/usr/share/glvnd/egl_vendor.d:$SNAP/usr/share/glvnd/egl_vendor.d
TCL_LIBRARY: $SNAP/usr/share/tcltk/tcl8.6
QT_QPA_PLATFORMTHEME: gtk3
QT_AUTO_SCREEN_SCALE_FACTOR: 1
HOME: $SNAP_USER_COMMON
PYTHONPATH: $SNAP:$SNAP/lib/python3.6/site-packages:$SNAP/usr/lib/python3.6:$SNAP/usr/lib/python3.6/lib-dynload
PYTHONPATH: $SNAP:$SNAP/lib/python3.8/site-packages:$SNAP/usr/lib/python3.8:$SNAP/usr/lib/python3.8/lib-dynload
qet-tb-generator:
command: bin/qelectrotech-launch $SNAP/bin/qet_tb_generator
command: bin/qet_tb_generator
command-chain:
- bin/qelectrotech-launch
extensions: [kde-neon]
plugs: *plugs
environment: *env
@@ -56,10 +56,15 @@ parts:
organize:
'*': bin/
update-instructions:
plugin: dump
source: build-aux/snap/local/update-instructions
organize:
'*': update-instructions/
qet-tb-generator:
plugin: python
python-version: python3
source: https://github.com/qelectrotech/qet_tb_generator.git
source: https://github.com/raulroda/qet_tb_generator-plugin.git
python-packages: [PySimpleGUI]
stage-packages:
- python3-lxml
@@ -69,14 +74,14 @@ parts:
kde-sdk-setup:
plugin: nil
build-snaps:
- kde-frameworks-5-core18-sdk
- kde-frameworks-5-qt-5-15-3-core20-sdk
build-packages:
- g++
- mesa-common-dev
- libglvnd-dev
- rsync
override-build: |
rsync -a --ignore-existing /snap/kde-frameworks-5-core18-sdk/current/ /
rsync -a --ignore-existing /snap/kde-frameworks-5-qt-5-15-3-core20-sdk/current/ /
dxf-to-qet:
after: [kde-sdk-setup]
@@ -92,14 +97,15 @@ parts:
after: [kde-sdk-setup]
plugin: nil
source: .
stage-packages: [ git, sqlite3 ]
stage-packages: [ git, sqlite3, xdg-user-dirs ]
build-packages:
- git
- libsqlite3-dev
override-pull: |
snapcraftctl pull
snap_version=$(git describe --dirty)
modified_displayed_version=$snap_version".snap"
displayed_version=$(grep "displayedVersion" sources/qet.h | tr -d "\";" | cut -d" " -f5)
snap_version="${displayed_version}~$(git rev-parse --short=8 HEAD)"
modified_displayed_version="${snap_version}.snap"
sed -i -E "s|const QString displayedVersion =.*|const QString displayedVersion =\"$modified_displayed_version\";|" sources/qet.h
snapcraftctl set-version "$snap_version"
override-build: |
@@ -115,11 +121,14 @@ parts:
cleanup:
after: [qelectrotech, dxf-to-qet, qet-tb-generator]
plugin: nil
build-snaps: [core18, kde-frameworks-5-core18]
build-snaps: [kde-frameworks-5-qt-5-15-3-core20]
override-prime: |
# Remove all files from snap that are already included in the base snap or in
# any connected content snaps
set -eux
for snap in "core18" "kde-frameworks-5-core18"; do # List all content-snaps and base snaps you're using here
cd "/snap/$snap/current" && find . -type f,l -exec rm -f "$SNAPCRAFT_PRIME/{}" \;
for snap in "kde-frameworks-5-qt-5-15-3-core20"; do # List all content-snaps you're using here
cd "/snap/$snap/current" && find . -type f,l -exec rm -f "$SNAPCRAFT_PRIME/{}" "$SNAPCRAFT_PRIME/usr/{}" \;
done
for cruft in bug lintian man; do
rm -rf $SNAPCRAFT_PRIME/usr/share/$cruft
done
find $SNAPCRAFT_PRIME/usr/share/doc/ -type f -not -name 'copyright' -delete
find $SNAPCRAFT_PRIME/usr/share -type d -empty -delete
@@ -0,0 +1,74 @@
<definition hotspot_y="24" version="0.80" orientation="dyyy" hotspot_x="47" width="80" height="60" link_type="master" type="element">
<uuid uuid="{23e2be0b-4fda-4c61-a627-7f18dc750a8e}"/>
<names>
<name lang="ar">Switch with LED</name>
<name lang="es">Switch with LED</name>
<name lang="en">Switch with LED</name>
<name lang="cs">Switch with LED</name>
<name lang="nl">Switch with LED</name>
<name lang="de">Switch with LED</name>
<name lang="fr">Switch with LED</name>
<name lang="pl">Switch with LED</name>
<name lang="it">Switch with LED</name>
</names>
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<circle x="13" diameter="14" style="line-style:normal;line-weight:normal;filling:green;color:black" y="-2" antialias="true"/>
<polygon y2="15" y1="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" x3="0" closed="false" y3="25" x1="-15" antialias="true"/>
<polygon y5="5" y4="5" y2="5" y1="5" style="line-style:dotted;line-weight:normal;filling:none;color:black" x2="-27" x4="-31" x3="-29" x5="-41" closed="false" y3="10" x1="-8" antialias="false"/>
<line end1="none" length2="1.5" y2="-5" y1="-15" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<polygon y2="-3" y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-20" x3="-12" closed="false" y3="-3" x1="-20" antialias="false"/>
<line end1="none" length2="1.5" y2="-2" y1="-15" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" end2="none" x1="20" antialias="false"/>
<line end1="none" length2="1.5" y2="25" y1="12" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" end2="none" x1="20" antialias="false"/>
<arc x="-22.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-22.5" antialias="true"/>
<line end1="none" length2="1.5" y2="10" y1="0" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="25" end2="none" x1="15" antialias="false"/>
<arc x="17.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="27.5" antialias="true"/>
<dynamic_text z="10" Valignment="AlignTop" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" x="18" rotation="0" uuid="{29d2349f-5f03-47cb-9b7a-b373fa6b3aad}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-24" frame="false">
<text>+</text>
</dynamic_text>
<dynamic_text z="10" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="35" rotation="0" uuid="{8053f011-a2d9-400b-b527-e8d14d50237e}" text_from="ElementInfo" Halignment="AlignLeft" text_width="-1" y="-5" frame="true">
<text/>
<info_name>label</info_name>
</dynamic_text>
<line end1="none" length2="1.5" y2="0" y1="10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="25" end2="none" x1="15" antialias="false"/>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-15" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-23" frame="false">
<text>3</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-14" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="14" frame="false">
<text>1</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-35" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-23" frame="false">
<text>2</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="5" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-23" frame="false">
<text>X1</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="4" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="14" frame="false">
<text>X2</text>
</dynamic_text>
<arc x="17.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-22.5" antialias="true"/>
<arc x="-2.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="27.5" antialias="true"/>
<arc x="-2.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-22.5" antialias="true"/>
<line end1="none" length2="1.5" y2="10" y1="0" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-41" end2="none" x1="-41" antialias="false"/>
<arc x="-45" angle="-180" start="-90" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" height="10" y="0" antialias="true"/>
<line end1="none" length2="1.5" y2="-20" y1="30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-33" end2="none" x1="-33" antialias="false"/>
<line end1="none" length2="1.5" y2="30" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="30" end2="none" x1="30" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-23" end2="none" x1="-33" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-3" end2="none" x1="-17" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="17" end2="none" x1="3" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="30" end2="none" x1="23" antialias="false"/>
<line end1="none" length2="1.5" y2="30" y1="30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="30" end2="none" x1="23" antialias="false"/>
<line end1="none" length2="1.5" y2="30" y1="30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="3" end2="none" x1="17" antialias="false"/>
<line end1="none" length2="1.5" y2="30" y1="30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-3" end2="none" x1="-33" antialias="false"/>
<terminal x="-20" orientation="n" y="-20"/>
<terminal x="20" orientation="n" y="-20"/>
<terminal x="20" orientation="s" y="30"/>
<terminal x="0" orientation="n" y="-20"/>
<terminal x="0" orientation="s" y="30"/>
</description>
</definition>
@@ -0,0 +1,74 @@
<definition hotspot_y="24" version="0.80" orientation="dyyy" hotspot_x="47" width="80" height="60" link_type="master" type="element">
<uuid uuid="{d541c930-af0b-49f6-8904-953c8ce390c0}"/>
<names>
<name lang="ar">Switch with LED</name>
<name lang="es">Switch with LED</name>
<name lang="en">Switch with LED</name>
<name lang="cs">Switch with LED</name>
<name lang="nl">Switch with LED</name>
<name lang="de">Switch with LED</name>
<name lang="fr">Switch with LED</name>
<name lang="pl">Switch with LED</name>
<name lang="it">Switch with LED</name>
</names>
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<circle x="13" diameter="14" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-2" antialias="true"/>
<polygon y2="15" y1="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" x3="0" closed="false" y3="25" x1="-15" antialias="true"/>
<polygon y5="5" y4="5" y2="5" y1="5" style="line-style:dotted;line-weight:normal;filling:none;color:black" x2="-27" x4="-31" x3="-29" x5="-41" closed="false" y3="10" x1="-8" antialias="false"/>
<line end1="none" length2="1.5" y2="-5" y1="-15" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<polygon y2="-3" y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-20" x3="-12" closed="false" y3="-3" x1="-20" antialias="false"/>
<line end1="none" length2="1.5" y2="-2" y1="-15" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" end2="none" x1="20" antialias="false"/>
<line end1="none" length2="1.5" y2="25" y1="12" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" end2="none" x1="20" antialias="false"/>
<arc x="-22.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-22.5" antialias="true"/>
<line end1="none" length2="1.5" y2="10" y1="0" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="25" end2="none" x1="15" antialias="false"/>
<dynamic_text z="10" Valignment="AlignTop" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" x="18" rotation="0" uuid="{29d2349f-5f03-47cb-9b7a-b373fa6b3aad}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-24" frame="false">
<text>+</text>
</dynamic_text>
<arc x="17.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="27.5" antialias="true"/>
<dynamic_text z="10" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="35" rotation="0" uuid="{8053f011-a2d9-400b-b527-e8d14d50237e}" text_from="ElementInfo" Halignment="AlignLeft" text_width="-1" y="-5" frame="true">
<text/>
<info_name>label</info_name>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="5" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-23" frame="false">
<text>X1</text>
</dynamic_text>
<line end1="none" length2="1.5" y2="0" y1="10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="25" end2="none" x1="15" antialias="false"/>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-35" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-23" frame="false">
<text>2</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-14" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="14" frame="false">
<text>1</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-15" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-23" frame="false">
<text>3</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="4" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="14" frame="false">
<text>X2</text>
</dynamic_text>
<arc x="17.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-22.5" antialias="true"/>
<arc x="-2.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="27.5" antialias="true"/>
<arc x="-2.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-22.5" antialias="true"/>
<line end1="none" length2="1.5" y2="10" y1="0" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-41" end2="none" x1="-41" antialias="false"/>
<arc x="-45" angle="-180" start="-90" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" height="10" y="0" antialias="true"/>
<line end1="none" length2="1.5" y2="-20" y1="30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-33" end2="none" x1="-33" antialias="false"/>
<line end1="none" length2="1.5" y2="30" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="30" end2="none" x1="30" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-23" end2="none" x1="-33" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-3" end2="none" x1="-17" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="17" end2="none" x1="3" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="30" end2="none" x1="23" antialias="false"/>
<line end1="none" length2="1.5" y2="30" y1="30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="30" end2="none" x1="23" antialias="false"/>
<line end1="none" length2="1.5" y2="30" y1="30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="3" end2="none" x1="17" antialias="false"/>
<line end1="none" length2="1.5" y2="30" y1="30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-3" end2="none" x1="-33" antialias="false"/>
<terminal x="-20" orientation="n" y="-20"/>
<terminal x="0" orientation="s" y="30"/>
<terminal x="0" orientation="n" y="-20"/>
<terminal x="20" orientation="s" y="30"/>
<terminal x="20" orientation="n" y="-20"/>
</description>
</definition>
@@ -0,0 +1,40 @@
<definition hotspot_y="44" version="0.80" orientation="dyyy" hotspot_x="21" width="70" height="70" link_type="simple" type="element">
<uuid uuid="{7c5bf0a4-b664-43ff-905f-977c26c4488d}"/>
<names>
<name lang="en">AC MOTOR 1-Phase</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<arc x="-3" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<arc x="17" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<arc x="37" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<arc x="-3" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="35" rotation="0" text="PE" y="-19"/>
<arc x="17" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<arc x="37" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<circle x="-15" diameter="30" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-10" antialias="true"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="16" rotation="0" text="N" y="-19"/>
<rect x="19.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-33.198" antialias="false"/>
<arc x="-17.5" angle="-80" start="20" style="line-style:normal;line-weight:normal;filling:none;color:black" width="35" height="35" y="-12.5" antialias="true"/>
<rect x="-0.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-33.198" antialias="false"/>
<rect x="39.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-33.198" antialias="false"/>
<line end1="none" length2="1.5" y2="-40" y1="-36" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" end2="none" x1="40" antialias="false"/>
<line end1="none" length2="1.5" y2="-40" y1="-36" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" end2="none" x1="20" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-3" rotation="0" text="L" y="-19"/>
<line end1="none" length2="1.5" y2="-40" y1="-36" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-5" rotation="0" text="M" y="3"/>
<text color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-7" rotation="0" text="1 ~" y="14"/>
<line end1="none" length2="1.5" y2="-10" y1="-17" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<polygon y5="-4" y4="-4" y2="-10" y1="-17" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" x4="12" x3="12" x5="12" closed="false" y3="-4" x1="20" antialias="false"/>
<polygon y5="-17" y4="-17" y2="14" y1="14" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" x4="40" x3="40" x5="40" closed="false" y3="-17" x1="15" antialias="false"/>
<dynamic_text z="28" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-48" rotation="0" uuid="{5b146f38-9c8c-410e-827c-456cac6fe424}" text_from="ElementInfo" Halignment="AlignLeft" text_width="-1" y="-8" frame="false">
<text/>
<info_name>label</info_name>
</dynamic_text>
<terminal x="20" orientation="n" y="-40"/>
<terminal x="40" orientation="n" y="-40"/>
<terminal x="0" orientation="n" y="-40"/>
</description>
</definition>
@@ -0,0 +1,49 @@
<definition hotspot_y="44" version="0.80" orientation="dyyy" hotspot_x="30" width="80" height="70" link_type="simple" type="element">
<uuid uuid="{bae1c471-52c4-4eb0-86c8-7283000b359e}"/>
<names>
<name lang="en">AC MOTOR 3-Phases</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<arc x="-3" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<arc x="17" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<arc x="37" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-23" rotation="0" text="U" y="-19"/>
<arc x="-3" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="35" rotation="0" text="PE" y="-19"/>
<arc x="17" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<arc x="37" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<circle x="-15" diameter="30" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-10" antialias="true"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="16" rotation="0" text="W" y="-19"/>
<rect x="19.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-33.198" antialias="false"/>
<arc x="-17.5" angle="-80" start="20" style="line-style:normal;line-weight:normal;filling:none;color:black" width="35" height="35" y="-12.5" antialias="true"/>
<rect x="-0.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-33.198" antialias="false"/>
<rect x="39.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-33.198" antialias="false"/>
<line end1="none" length2="1.5" y2="-40" y1="-36" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" end2="none" x1="40" antialias="false"/>
<line end1="none" length2="1.5" y2="-40" y1="-36" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" end2="none" x1="20" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-3" rotation="0" text="V" y="-19"/>
<line end1="none" length2="1.5" y2="-40" y1="-36" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-5" rotation="0" text="M" y="3"/>
<text color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-6" rotation="0" text="3 ~" y="11"/>
<arc x="-23" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<arc x="-23" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-36" antialias="true"/>
<rect x="-20.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-33.1982" antialias="false"/>
<line end1="none" length2="1.5" y2="-40" y1="-36" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-20" end2="none" x1="-20" antialias="false"/>
<rect x="-4" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" height="2" y="13" antialias="false"/>
<rect x="-4" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:black;color:black" width="4" height="2" y="13" antialias="false"/>
<line end1="none" length2="1.5" y2="-10" y1="-17" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<dynamic_text z="28" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-50" rotation="0" uuid="{5b146f38-9c8c-410e-827c-456cac6fe424}" text_from="ElementInfo" Halignment="AlignLeft" text_width="-1" y="-5" frame="false">
<text/>
<info_name>label</info_name>
</dynamic_text>
<polygon y5="-4" y4="-4" y2="-10" y1="-17" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-20" x4="-12" x3="-12" x5="-12" closed="false" y3="-4" x1="-20" antialias="false"/>
<polygon y5="-4" y4="-4" y2="-10" y1="-17" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" x4="12" x3="12" x5="12" closed="false" y3="-4" x1="20" antialias="false"/>
<polygon y5="-17" y4="-17" y2="14" y1="14" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" x4="40" x3="40" x5="40" closed="false" y3="-17" x1="15" antialias="false"/>
<terminal x="40" orientation="n" y="-40"/>
<terminal x="-20" orientation="n" y="-40"/>
<terminal x="0" orientation="n" y="-40"/>
<terminal x="20" orientation="n" y="-40"/>
</description>
</definition>
@@ -0,0 +1,69 @@
<definition hotspot_y="24" version="0.80" orientation="dyyy" hotspot_x="17" width="100" height="50" link_type="simple" type="element">
<uuid uuid="{06bac228-c628-4e59-bae7-3f2721d2d41f}"/>
<names>
<name lang="es">Lámpara verde</name>
<name lang="pt">Lâmpada</name>
<name lang="en">Light</name>
<name lang="ca">Lum verda</name>
<name lang="cs">Světlo</name>
<name lang="ru">Лампа</name>
<name lang="fr">Lampe</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<circle x="33" diameter="14" style="line-style:normal;line-weight:normal;filling:yellow;color:black" y="-7" antialias="true"/>
<circle x="13" diameter="14" style="line-style:normal;line-weight:normal;filling:green;color:black" y="-7" antialias="true"/>
<circle x="39" diameter="2" style="line-style:normal;line-weight:normal;filling:none;color:black" y="13" antialias="false"/>
<circle x="-7" diameter="14" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-7" antialias="true"/>
<circle x="19" diameter="2" style="line-style:normal;line-weight:normal;filling:none;color:black" y="13" antialias="false"/>
<polygon y5="-7.74447" y4="8.25553" y2="-13.7445" y1="-7.74447" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="71.1262" x4="63.1262" x3="71.1262" x5="63.1262" closed="false" y3="14.2555" x1="63.1262" antialias="false"/>
<arc x="-2.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<arc x="17.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-22.5" antialias="true"/>
<arc x="37.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-22.5" antialias="true"/>
<arc x="57.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-22.5" antialias="true"/>
<arc x="-2.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-22.5" antialias="true"/>
<line end1="none" length2="1.5" y2="-7" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" end2="none" x1="20" antialias="false"/>
<rect x="57.1262" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="16" y="-7.74447" antialias="false"/>
<line end1="none" length2="1.5" y2="-7" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" end2="none" x1="40" antialias="false"/>
<line end1="none" length2="1.5" y2="-8" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="60" end2="none" x1="60" antialias="false"/>
<dynamic_text z="2" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="80" rotation="0" uuid="{eab74fae-85ab-493c-a96e-cc45b953db7a}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="5" frame="false">
<text/>
</dynamic_text>
<line end1="none" length2="1.5" y2="14" y1="7" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" end2="none" x1="40" antialias="false"/>
<line end1="none" length2="1.5" y2="14" y1="9" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="60" end2="none" x1="60" antialias="false"/>
<line end1="none" length2="1.5" y2="14" y1="7" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" end2="none" x1="20" antialias="false"/>
<dynamic_text z="3" Valignment="AlignTop" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="80" rotation="0" uuid="{d7cb3c37-ecc0-4d87-811b-33cc0fc3221a}" text_from="ElementInfo" Halignment="AlignLeft" text_width="-1" y="-10" frame="true">
<text/>
<info_name>label</info_name>
</dynamic_text>
<line end1="none" length2="1.5" y2="5" y1="-5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="25" end2="none" x1="15" antialias="false"/>
<line end1="none" length2="1.5" y2="-7" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<line end1="none" length2="1.5" y2="5" y1="-5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="45" end2="none" x1="35" antialias="false"/>
<line end1="none" length2="1.5" y2="-5" y1="5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="45" end2="none" x1="35" antialias="false"/>
<line end1="none" length2="1.5" y2="-5" y1="5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="25" end2="none" x1="15" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="7" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<line end1="none" length2="1.5" y2="5" y1="-5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="5" end2="none" x1="-5" antialias="false"/>
<line end1="none" length2="1.5" y2="-5" y1="5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="5" end2="none" x1="-5" antialias="false"/>
<line end1="none" length2="1.5" y2="14" y1="14" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="60" end2="none" x1="0" antialias="false"/>
<circle x="-1" diameter="2" style="line-style:normal;line-weight:normal;filling:none;color:black" y="13" antialias="false"/>
<dynamic_text z="10" Valignment="AlignTop" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" x="-15" rotation="0" uuid="{29d2349f-5f03-47cb-9b7a-b373fa6b3aad}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="2" frame="false">
<text>+</text>
</dynamic_text>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="77" end2="none" x1="3" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="77" end2="none" x1="77" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="63" end2="none" x1="77" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="43" end2="none" x1="57" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="23" end2="none" x1="37" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="3" end2="none" x1="17" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-12" end2="none" x1="-3" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-12" end2="none" x1="-12" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-3" end2="none" x1="-12" antialias="false"/>
<terminal x="20" orientation="n" y="-20"/>
<terminal x="60" orientation="n" y="-20"/>
<terminal x="40" orientation="n" y="-20"/>
<terminal x="0" orientation="s" y="20"/>
<terminal x="0" orientation="n" y="-20"/>
</description>
</definition>
@@ -0,0 +1,7 @@
<qet-directory>
<names>
<name lang="en">ONNM4T</name>
<name lang="de">ONNM4T</name>
<name lang="cs">ONNM4T</name>
</names>
</qet-directory>
@@ -0,0 +1,317 @@
<definition link_type="simple" type="element" width="110" height="200" hotspot_x="54" version="0.80" hotspot_y="95">
<uuid uuid="{a36e8727-bc4d-43a5-a677-58f08f265f36}"/>
<names>
<name lang="de">ESP8266 nodemcu v3</name>
<name lang="nl">ESP8266 nodemcu v3</name>
</names>
<elementInformations/>
<informations></informations>
<description>
<text x="10" y="-32" color="#000000" text="Fi" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="90"/>
<rect x="-13" y="-11" antialias="false" width="2" height="3" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:orange;color:orange"/>
<rect x="-9" y="13" antialias="false" width="2" height="3" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:orange;color:orange"/>
<rect x="6" y="71" antialias="false" width="5" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:orange;color:orange"/>
<rect x="1" y="33" antialias="false" width="8" height="3" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<text x="-9" y="-42" color="#000000" text="ISM 2.4GHz" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="90"/>
<rect x="-23" y="33" antialias="false" width="2" height="3" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:orange;color:orange"/>
<rect x="16" y="47" antialias="false" width="8" height="3" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<text x="-13" y="-42" color="#000000" text="PA +25dBm" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="90"/>
<text x="-5" y="-59" color="#000000" text="VENDOR" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="90"/>
<text x="10" y="-47" color="#000000" text="Wi" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="90"/>
<text x="-17" y="-42" color="#000000" text="802.11b/g/n" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="90"/>
<circle diameter="2" x="-48" y="59" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<line y1="12" antialias="false" y2="12" x1="-9" end2="none" x2="-7" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-12" antialias="false" y2="-12" x1="-13" end2="none" x2="-11" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<circle diameter="2" x="46" y="-21" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<line y1="71" antialias="false" y2="73" x1="6" end2="none" x2="6" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="37" antialias="false" y2="38" x1="2" end2="none" x2="2" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="51" antialias="false" y2="52" x1="17" end2="none" x2="17" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="32" antialias="false" y2="32" x1="-23" end2="none" x2="-21" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="17" antialias="false" y2="17" x1="-9" end2="none" x2="-7" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="37" antialias="false" y2="37" x1="-23" end2="none" x2="-21" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="51" antialias="false" y2="52" x1="19" end2="none" x2="19" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<rect x="-22" y="-42" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line y1="37" antialias="false" y2="38" x1="4" end2="none" x2="4" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-7" antialias="false" y2="-7" x1="-13" end2="none" x2="-11" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="71" antialias="false" y2="73" x1="11" end2="none" x2="11" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="51" antialias="false" y2="52" x1="21" end2="none" x2="21" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<rect x="8" y="-20" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line y1="37" antialias="false" y2="38" x1="6" end2="none" x2="6" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="51" antialias="false" y2="52" x1="23" end2="none" x2="23" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="37" antialias="false" y2="38" x1="8" end2="none" x2="8" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<circle diameter="2" x="46" y="-1" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect x="-22" y="-46" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line y1="46" antialias="false" y2="45" x1="17" end2="none" x2="17" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="32" antialias="false" y2="31" x1="2" end2="none" x2="2" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="31" antialias="false" y2="32" x1="4" end2="none" x2="4" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="45" antialias="false" y2="46" x1="19" end2="none" x2="19" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<circle diameter="2" x="46" y="-61" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<line y1="45" antialias="false" y2="46" x1="21" end2="none" x2="21" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<rect x="20" y="-42" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line y1="31" antialias="false" y2="32" x1="6" end2="none" x2="6" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="31" antialias="false" y2="32" x1="8" end2="none" x2="8" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="45" antialias="false" y2="46" x1="23" end2="none" x2="23" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<circle diameter="2" x="-48" y="-21" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="46" y="-51" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="-48" y="-61" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect x="-22" y="-34" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="2" x="46" y="19" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect x="-22" y="-26" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect x="2" y="-20" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect x="14" y="-20" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="2" x="46" y="39" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect x="-16" y="-20" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect x="-22" y="-54" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="2" x="-48" y="-41" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect x="-22" y="-50" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="2" x="46" y="9" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="-48" y="-1" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="-48" y="-31" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="-48" y="19" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="-48" y="39" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="-48" y="29" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="-48" y="-51" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="-48" y="49" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="-48" y="9" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect x="-10" y="-20" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="2" x="46" y="-31" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="6" x="42" y="-88" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="2" x="46" y="69" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="46" y="-11" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="46" y="-41" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="-48" y="69" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="46" y="49" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect x="-4" y="-20" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="3" x="23.5" y="81" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<text x="16" y="78" color="#000000" text="FLASH" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="90"/>
<circle diameter="5" x="-47" y="88" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<ellipse x="42" y="88" antialias="false" width="6" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="2" x="46" y="29" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect x="-22" y="-38" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="2" x="46" y="59" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<text x="34" y="-67" color="#000000" text="D0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<rect x="20" y="-46" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect x="21" y="79" antialias="false" width="8" height="7" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="35" y="-57" color="#000000" text="D1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<rect x="20" y="-34" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="35" y="-47" color="#000000" text="D2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<rect x="20" y="-54" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect x="20" y="-50" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-44" y="-67" color="#000000" text="A0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<rect x="20" y="-26" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-44" y="-58" color="#000000" text="G" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<rect x="20" y="-38" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="35" y="-38" color="#000000" text="D3" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-44" y="-48" color="#000000" text="VU" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<rect x="20" y="-30" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="35" y="-27" color="#000000" text="D4" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="35" y="-18" color="#000000" text="3V" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-44" y="-37" color="#000000" text="S3" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-44" y="-27" color="#000000" text="S2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="39" y="-8" color="#000000" text="G" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-44" y="-17" color="#000000" text="S1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="35" y="3" color="#000000" text="D5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-44" y="-8" color="#000000" text="SC" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="35" y="13" color="#000000" text="D6" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-44" y="2" color="#000000" text="S0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="35" y="23" color="#000000" text="D7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-44" y="12" color="#000000" text="SK" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="35" y="33" color="#000000" text="D8" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-44" y="22" color="#000000" text="G" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="35" y="43" color="#000000" text="RX" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-44" y="32" color="#000000" text="3V" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="36" y="53" color="#000000" text="TX" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-44" y="43" color="#000000" text="EN" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="39" y="63" color="#000000" text="G" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-44" y="52" color="#000000" text="RST" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="35" y="73" color="#000000" text="3V" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-44" y="62" color="#000000" text="G" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<text x="-44" y="72" color="#000000" text="Vin" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<rect x="-10" y="85" antialias="false" width="20" height="15" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:gray;color:black"/>
<circle diameter="3" x="-27.5" y="81" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect x="-20" y="-90" antialias="false" width="40" height="70" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="0" y="-59" color="#000000" text="MODEL ESP8266mod" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="90"/>
<rect x="-20" y="-60" antialias="false" width="40" height="0" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="6" x="-48" y="-88" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect x="-30" y="79" antialias="false" width="8" height="7" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text x="-20" y="80" color="#000000" text="RST" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="90"/>
<text x="-14" y="80" color="#000000" text="LoL1n" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<circle diameter="2" x="46" y="-71" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<line y1="-70" antialias="false" y2="-70" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="70" antialias="false" y2="70" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="60" antialias="false" y2="60" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="50" antialias="false" y2="50" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="40" antialias="false" y2="40" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="30" antialias="false" y2="30" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="20" antialias="false" y2="20" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="10" antialias="false" y2="10" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="0" antialias="false" y2="0" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-10" antialias="false" y2="-10" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-20" antialias="false" y2="-20" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-30" antialias="false" y2="-30" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-40" antialias="false" y2="-40" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-50" antialias="false" y2="-50" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-60" antialias="false" y2="-60" x1="46" end2="none" x2="50" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-61" antialias="false" y2="-86" x1="-16" end2="none" x2="-16" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-86" antialias="false" y2="-86" x1="-16" end2="none" x2="-12" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-86" antialias="false" y2="-72" x1="-12" end2="none" x2="-12" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-72" antialias="false" y2="-72" x1="-12" end2="none" x2="-8" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-72" antialias="false" y2="-86" x1="-8" end2="none" x2="-8" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-86" antialias="false" y2="-86" x1="-8" end2="none" x2="-4" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-86" antialias="false" y2="-72" x1="-4" end2="none" x2="-4" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-72" antialias="false" y2="-72" x1="-4" end2="none" x2="0" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-72" antialias="false" y2="-86" x1="0" end2="none" x2="0" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-86" antialias="false" y2="-86" x1="0" end2="none" x2="4" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-86" antialias="false" y2="-72" x1="4" end2="none" x2="4" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-72" antialias="false" y2="-72" x1="4" end2="none" x2="8" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-72" antialias="false" y2="-86" x1="8" end2="none" x2="8" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-86" antialias="false" y2="-86" x1="8" end2="none" x2="16" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-66" antialias="false" y2="-66" x1="-16" end2="none" x2="8" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<rect x="-22" y="-30" antialias="false" width="2" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle diameter="2" x="-48" y="-71" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle diameter="2" x="-48" y="-11" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<line y1="48.0392" antialias="false" y2="49.9182" x1="-22.7087" end2="none" x2="-22.7087" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="48.0392" antialias="false" y2="49.9182" x1="-19.4072" end2="none" x2="-19.4072" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="48.0392" antialias="false" y2="49.9182" x1="-16.1058" end2="none" x2="-16.1058" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="48.0392" antialias="false" y2="49.9182" x1="-12.8042" end2="none" x2="-12.8042" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="48.0392" antialias="false" y2="49.9182" x1="-9.50264" end2="none" x2="-9.50264" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="48.0392" antialias="false" y2="49.9182" x1="-6.20107" end2="none" x2="-6.20107" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="48.0392" antialias="false" y2="49.9182" x1="-2.8995" end2="none" x2="-2.8995" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="48.0392" antialias="false" y2="49.9182" x1="0.402059" end2="none" x2="0.402059" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<rect x="-26.0103" y="50.4637" antialias="false" width="29.7139" height="12.1224" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<line y1="64.95" antialias="false" y2="63.071" x1="-22.7087" end2="none" x2="-22.7087" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="64.95" antialias="false" y2="63.071" x1="-19.4072" end2="none" x2="-19.4072" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="64.95" antialias="false" y2="63.071" x1="-16.1058" end2="none" x2="-16.1058" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="64.95" antialias="false" y2="63.071" x1="-12.8042" end2="none" x2="-12.8042" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="64.95" antialias="false" y2="63.071" x1="-9.50264" end2="none" x2="-9.50264" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="64.95" antialias="false" y2="63.071" x1="-6.20107" end2="none" x2="-6.20107" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="64.95" antialias="false" y2="63.071" x1="-2.8995" end2="none" x2="-2.8995" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="64.95" antialias="false" y2="63.071" x1="0.402059" end2="none" x2="0.402059" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<ellipse x="-1.24872" y="52.4639" antialias="false" width="3.30155" height="3.75795" style="line-style:normal;line-weight:thin;filling:none;color:gray"/>
<line y1="4.59548" antialias="false" y2="4.59548" x1="0.611202" end2="none" x2="5.83929" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="10.7173" antialias="false" y2="10.7173" x1="0.611202" end2="none" x2="5.83929" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="16.8391" antialias="false" y2="16.8391" x1="0.611202" end2="none" x2="5.83929" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<rect x="6.6112" y="0.0109016" antialias="false" width="11.3888" height="19.9891" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect x="19" y="4" antialias="false" width="5.87257" height="12.1533" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:gray;color:gray"/>
<rect x="-20" y="5" antialias="false" width="5" height="6" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:orange;color:orange"/>
<line y1="4" antialias="false" y2="4" x1="-19" end2="none" x2="-16" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="12" antialias="false" y2="12" x1="-19" end2="none" x2="-16" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<rect x="-20" y="-11" antialias="false" width="2" height="3" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:orange;color:orange"/>
<line y1="-12" antialias="false" y2="-12" x1="-20" end2="none" x2="-18" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-7" antialias="false" y2="-7" x1="-20" end2="none" x2="-18" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<rect x="-3" y="-10" antialias="false" width="8" height="3" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<line y1="-6" antialias="false" y2="-5" x1="-2" end2="none" x2="-2" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-6" antialias="false" y2="-5" x1="0" end2="none" x2="0" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-6" antialias="false" y2="-5" x1="2" end2="none" x2="2" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-6" antialias="false" y2="-5" x1="4" end2="none" x2="4" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-11" antialias="false" y2="-12" x1="-2" end2="none" x2="-2" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-12" antialias="false" y2="-11" x1="0" end2="none" x2="0" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-12" antialias="false" y2="-11" x1="2" end2="none" x2="2" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-12" antialias="false" y2="-11" x1="4" end2="none" x2="4" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<rect x="15" y="-10" antialias="false" width="5" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:orange;color:orange"/>
<line y1="-10" antialias="false" y2="-8" x1="15" end2="none" x2="15" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-10" antialias="false" y2="-8" x1="20" end2="none" x2="20" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<rect x="18" y="62" antialias="false" width="4" height="1" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line y1="61" antialias="false" y2="60" x1="18" end2="none" x2="18" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="61" antialias="false" y2="60" x1="22" end2="none" x2="22" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="64" antialias="false" y2="65" x1="20" end2="none" x2="20" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="32" antialias="false" y2="32" x1="-10" end2="none" x2="-8" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="37" antialias="false" y2="37" x1="-10" end2="none" x2="-8" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<rect x="-10" y="33" antialias="false" width="2" height="3" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect x="-18" y="33" antialias="false" width="5" height="3" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:lightgray;color:lightgray"/>
<line y1="33" antialias="false" y2="32" x1="-19" end2="none" x2="-19" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="32" antialias="false" y2="32" x1="-18" end2="none" x2="-19" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="32" antialias="false" y2="32" x1="-13" end2="none" x2="-12" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="33" antialias="false" y2="32" x1="-12" end2="none" x2="-12" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="36" antialias="false" y2="37" x1="-19" end2="none" x2="-19" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="37" antialias="false" y2="37" x1="-18" end2="none" x2="-19" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="37" antialias="false" y2="37" x1="-13" end2="none" x2="-12" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="36" antialias="false" y2="37" x1="-12" end2="none" x2="-12" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="37" antialias="false" y2="36" x1="17" end2="none" x2="17" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="37" antialias="false" y2="36" x1="21" end2="none" x2="21" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<rect x="17" y="34" antialias="false" width="4" height="1" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line y1="32" antialias="false" y2="33" x1="19" end2="none" x2="19" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-70" antialias="false" y2="-70" x1="-50" end2="none" x2="-46" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-60" antialias="false" y2="-60" x1="-50" end2="none" x2="-46" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-50" antialias="false" y2="-50" x1="-50" end2="none" x2="-46" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-50" antialias="false" y2="-50" x1="-50" end2="none" x2="-46" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-40" antialias="false" y2="-40" x1="-50" end2="none" x2="-46" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-30" antialias="false" y2="-30" x1="-50" end2="none" x2="-46" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-20" antialias="false" y2="-20" x1="-50" end2="none" x2="-46" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-10" antialias="false" y2="-10" x1="-50" end2="none" x2="-46" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="0" antialias="false" y2="0" x1="-50" end2="none" x2="-46" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="10" antialias="false" y2="10" x1="-50" end2="none" x2="-48" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="20" antialias="false" y2="20" x1="-50" end2="none" x2="-48" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="30" antialias="false" y2="30" x1="-50" end2="none" x2="-48" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="40" antialias="false" y2="40" x1="-50" end2="none" x2="-48" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="50" antialias="false" y2="50" x1="-50" end2="none" x2="-48" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="60" antialias="false" y2="60" x1="-50" end2="none" x2="-48" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="70" antialias="false" y2="70" x1="-50" end2="none" x2="-48" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-58" antialias="false" y2="-58" x1="-18" end2="none" x2="-8" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-58" antialias="false" y2="-53" x1="-8" end2="none" x2="-8" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<line y1="-53" antialias="false" y2="-58" x1="-13" end2="none" x2="-13" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
<arc start="90" angle="90" x="-17" y="-51" antialias="true" width="10" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<arc start="0" angle="90" x="-17" y="-51" antialias="true" width="10" height="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<arc start="90" angle="90" x="-15" y="-49" antialias="true" width="5.35138" height="6.46" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<arc start="0" angle="90" x="-15.7844" y="-49" antialias="true" width="6.92018" height="6.46" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<arc start="90" angle="90" x="6.85" y="-49" antialias="true" width="5.95" height="6.75" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<arc start="0" angle="90" x="12.8" y="-49" antialias="true" width="5.95" height="6.75" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<arc start="180" angle="90" x="6.85" y="-42.25" antialias="true" width="5.95" height="6.75" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<arc start="0" angle="90" x="12.8" y="-35.5" antialias="true" width="5.95" height="6.75" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<arc start="270" angle="90" x="12.8" y="-28.75" antialias="true" width="5.95" height="6.75" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<arc start="180" angle="90" x="6.85" y="-28.75" antialias="true" width="5.95" height="6.75" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<line y1="-45.625" antialias="false" y2="-38.875" x1="6.85" end2="none" x2="6.85" end1="none" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5"/>
<line y1="-49" antialias="false" y2="-49" x1="9.825" end2="none" x2="15.775" end1="none" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5"/>
<line y1="-45.625" antialias="false" y2="-32.125" x1="18.75" end2="none" x2="18.75" end1="none" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5"/>
<line y1="-35.5" antialias="false" y2="-35.5" x1="15.775" end2="none" x2="9.825" end1="none" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5"/>
<line y1="-38.875" antialias="false" y2="-25.375" x1="6.85" end2="none" x2="6.85" end1="none" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5"/>
<line y1="-22" antialias="false" y2="-22" x1="9.825" end2="none" x2="15.775" end1="none" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5"/>
<line y1="-25.375" antialias="false" y2="-32.125" x1="18.75" end2="none" x2="18.75" end1="none" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5"/>
<rect x="7" y="67" antialias="false" width="3" height="2" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<line y1="69" antialias="false" y2="67" x1="6" end2="none" x2="6" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="67" antialias="false" y2="69" x1="11" end2="none" x2="11" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<rect x="-43" y="78" antialias="false" width="3" height="1" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect x="-43" y="81" antialias="false" width="3" height="1" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line y1="78" antialias="false" y2="79" x1="-44" end2="none" x2="-44" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="78" antialias="false" y2="79" x1="-39" end2="none" x2="-39" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="81" antialias="false" y2="82" x1="-39" end2="none" x2="-39" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="81" antialias="false" y2="82" x1="-44" end2="none" x2="-44" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<rect x="-43" y="-79" antialias="false" width="2" height="1" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect x="-43" y="-76" antialias="false" width="2" height="1" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line y1="-79" antialias="false" y2="-78" x1="-44" end2="none" x2="-44" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-76" antialias="false" y2="-75" x1="-44" end2="none" x2="-44" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-79" antialias="false" y2="-78" x1="-40" end2="none" x2="-40" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<line y1="-76" antialias="false" y2="-75" x1="-40" end2="none" x2="-40" end1="none" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:gray" length1="1.5"/>
<polygon y1="95" y3="-90" x3="50" antialias="false" y2="95" x4="-50" x5="-50" x1="10" y4="-90" x6="-10" x2="50" y5="95" y6="95" style="line-style:normal;line-weight:normal;filling:none;color:black" closed="false"/>
<terminal orientation="e" x="50" name="" y="-60" uuid="{0ef256f0-f9f2-44a8-b295-0ecbc2e7fe0b}"/>
<terminal orientation="e" x="50" name="" y="10" uuid="{14267edc-7c02-473b-8240-81b339eae790}"/>
<terminal orientation="w" x="-50" name="" y="0" uuid="{011ee72e-3cc8-4dcf-ab35-f0063822a365}"/>
<terminal orientation="e" x="50" name="" y="-30" uuid="{a3e5b7d1-c17f-4d68-a5a6-e22e3fb336ec}"/>
<terminal orientation="e" x="50" name="" y="-70" uuid="{50eb21b7-be92-4d96-a0c2-30ccc649fb74}"/>
<terminal orientation="e" x="50" name="" y="0" uuid="{7d661241-dad3-4287-ac82-70074fc210da}"/>
<terminal orientation="e" x="50" name="" y="20" uuid="{75772848-0a7a-4337-92cf-db4339c557f4}"/>
<terminal orientation="e" x="50" name="" y="-50" uuid="{3f0b8ccd-f277-4492-beb2-06cccc3483e8}"/>
<terminal orientation="e" x="50" name="" y="30" uuid="{82b13ccd-c0a7-4247-9712-955d881517f8}"/>
<terminal orientation="e" x="50" name="" y="50" uuid="{584750db-9b98-459e-9fff-c58677a349d2}"/>
<terminal orientation="w" x="-50" name="" y="30" uuid="{a6f24dfa-b713-4a12-b630-92939d99d985}"/>
<terminal orientation="w" x="-50" name="" y="-20" uuid="{f102ea0a-7bd6-450e-a76e-1e522a01e7e0}"/>
<terminal orientation="w" x="-50" name="" y="-10" uuid="{cff1500d-4bd5-4cc2-adb7-2fe6d087e185}"/>
<terminal orientation="e" x="50" name="" y="40" uuid="{6bc0e44e-37f8-4ac9-8035-be810c2cfcfb}"/>
<terminal orientation="e" x="50" name="" y="-10" uuid="{0b1e9ed3-a178-4d85-b730-356e3211e8fe}"/>
<terminal orientation="e" x="50" name="" y="70" uuid="{1cfd86ca-695e-4e31-898e-4c692e3b8e95}"/>
<terminal orientation="w" x="-50" name="" y="40" uuid="{33ee4868-e2dc-49fc-91d9-1bfa5b9f37be}"/>
<terminal orientation="w" x="-50" name="" y="-70" uuid="{41e097d1-4411-4a20-a2b0-de4cd8ff5eb3}"/>
<terminal orientation="w" x="-50" name="" y="20" uuid="{2079c80a-aa39-4d76-8df0-d66080c443ff}"/>
<terminal orientation="w" x="-50" name="" y="10" uuid="{98402606-3ed2-44a1-8b05-9f71abb897b7}"/>
<terminal orientation="w" x="-50" name="" y="70" uuid="{4a87885a-6573-4eb5-b7de-9e585a40ffcf}"/>
<terminal orientation="w" x="-50" name="" y="-50" uuid="{4ec722bb-5673-40b7-82ee-d765502ba3c3}"/>
<terminal orientation="w" x="-50" name="" y="-40" uuid="{5bce8ebe-0afc-411e-a0d7-41ac7658161b}"/>
<terminal orientation="e" x="50" name="" y="60" uuid="{c106496c-6c3a-4268-8a8e-f89a02119c01}"/>
<terminal orientation="w" x="-50" name="" y="-60" uuid="{eec58d21-4cce-4344-a25e-3227e12c6929}"/>
<terminal orientation="w" x="-50" name="" y="50" uuid="{fca8da7f-87a9-463a-ba33-e461e1577832}"/>
<terminal orientation="w" x="-50" name="" y="-30" uuid="{98b61480-d41b-4938-bbef-f8d0b308542e}"/>
<terminal orientation="e" x="50" name="" y="-40" uuid="{4905722a-119a-48b2-98cc-0bae47a7dc5c}"/>
<terminal orientation="e" x="50" name="" y="-20" uuid="{e98d315d-7a3e-473f-bedc-042d35ca52b7}"/>
<terminal orientation="w" x="-50" name="" y="60" uuid="{ced77be3-ca9d-4f0c-bbdf-69b3579104b6}"/>
</description>
</definition>
@@ -0,0 +1,55 @@
<definition link_type="simple" hotspot_x="45" width="90" height="70" version="0.70" hotspot_y="47" orientation="dyyy" type="element">
<uuid uuid="{ccf7beda-f8d5-4598-aa70-8b3d2032d4b8}"/>
<names>
<name lang="en">Fibaro DIMMER 2 FGD-212</name>
<name lang="nl">Fibaro DIMMER 2 FGD-212</name>
</names>
<elementInformations>
<elementInformation name="manufacturer" show="1">Fibaro</elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="label" show="1">Dimmer 2</elementInformation>
<elementInformation name="plant" show="1">230V / Z-Wave </elementInformation>
<elementInformation name="description" show="1">zwave dimmer</elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
<elementInformation name="comment" show="1">230V Dimmer</elementInformation>
<elementInformation name="designation" show="1">FGD-212</elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
</elementInformations>
<informations></informations>
<description>
<text y="-26" x="-8" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="S2"/>
<text y="-26" x="2" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Sx"/>
<text y="-26" x="-18" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="S1"/>
<text y="-26" x="22" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="∿"/>
<text y="-27" x="23" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="↗"/>
<rect y="-42" rx="0" x="-30" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<text y="-26" x="13" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="N"/>
<rect y="-42" rx="0" x="-20" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="-10" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="0" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="10" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="20" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<circle y="-40" x="-18" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="-8" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="2" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="12" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="22" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="-28" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<polygon x3="-40" y4="0" x5="-40" x2="-35" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-30" y2="-42" y5="0" x6="-40" y3="-32" closed="false" x4="-40" y6="0" y1="-42"/>
<polygon x3="40" y4="0" x2="35" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="30" y2="-42" y3="-32" closed="false" x4="40" y1="-42"/>
<arc y="-20" x="-40" width="80" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" height="40" angle="90" start="180"/>
<arc y="-20" x="-40" width="80" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" height="40" angle="90" start="270"/>
<rect y="-5" rx="0" x="-30" width="7" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="7" ry="0"/>
<text y="-19" x="-26" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="L"/>
<text y="-6" x="-19" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="DIMMER 2"/>
<circle y="-3.7" x="-28.5" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false" diameter="4"/>
<terminal y="-42" x="25" orientation="n"/>
<terminal y="-42" x="-15" orientation="n"/>
<terminal y="-42" x="-5" orientation="n"/>
<terminal y="-42" x="-25" orientation="n"/>
<terminal y="-42" x="15" orientation="n"/>
<terminal y="-42" x="5" orientation="n"/>
</description>
</definition>
@@ -0,0 +1,56 @@
<definition link_type="simple" hotspot_x="50" width="90" height="70" version="0.70" hotspot_y="47" orientation="dyyy" type="element">
<uuid uuid="{0050a285-ff08-4210-945d-f2cdec6cb86c}"/>
<names>
<name lang="en">Fibaro Double Switch 2 FGS-223</name>
<name lang="nl">Fibaro Double Switch 2 FGS-223</name>
</names>
<elementInformations>
<elementInformation name="manufacturer" show="1">Fibaro</elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="label" show="1">Double Switch 2</elementInformation>
<elementInformation name="plant" show="1">230V / Z-Wave</elementInformation>
<elementInformation name="description" show="1">Zwave Double switch</elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="designation" show="1">FGS-223</elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
</elementInformations>
<informations></informations>
<description>
<text y="4" x="-16" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="FGS-223"/>
<text y="-4" x="-24" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="SWITCH 2"/>
<text y="-26" x="-1" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="L"/>
<text y="-26" x="-23" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="S2"/>
<text y="-26" x="-33" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="S1"/>
<text y="-26" x="18" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="N"/>
<rect y="-42" rx="0" x="-35" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<text y="-26" x="7" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Q1"/>
<rect y="-42" rx="0" x="-25" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="-15" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="-5" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="5" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="15" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<circle y="-40" x="-23" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="-13" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="7" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="17" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="-33" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<polygon x3="-45" y4="0" x5="-45" x2="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-35" y2="-42" y5="0" x6="-45" y3="-32" closed="false" x4="-45" y6="0" y1="-42"/>
<polygon x3="35" y4="0" x2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="25" y2="-42" y3="-32" closed="false" x4="35" y1="-42"/>
<arc y="-20" x="-45" width="80" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" height="40" angle="90" start="180"/>
<arc y="-20" x="-45" width="80" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" height="40" angle="90" start="270"/>
<rect y="-5" rx="0" x="-35" width="7" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="7" ry="0"/>
<text y="-26" x="-13" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Q2"/>
<text y="-13" x="-20" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="DOUBLE"/>
<circle y="-3.2" x="-33" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false" diameter="3"/>
<terminal y="-42" x="20" orientation="n"/>
<terminal y="-42" x="0" orientation="n"/>
<terminal y="-42" x="-20" orientation="n"/>
<terminal y="-42" x="-10" orientation="n"/>
<terminal y="-42" x="-30" orientation="n"/>
<terminal y="-42" x="10" orientation="n"/>
</description>
</definition>
@@ -0,0 +1,72 @@
<definition link_type="simple" hotspot_x="115" width="230" height="170" version="0.70" hotspot_y="56" orientation="dyyy" type="element">
<uuid uuid="{05effa26-d988-45fb-a7aa-48004fc5d9c3}"/>
<names>
<name lang="en">Fibaro RGBW Controller FGRGBWM-441</name>
<name lang="nl">Fibaro RGBW Controller FGRGBWM-441</name>
</names>
<elementInformations>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1">Fibaro Group S.A.</elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="label" show="1">Fibaro RGBW</elementInformation>
<elementInformation name="plant" show="1">12/24 DC / z-wave</elementInformation>
<elementInformation name="description" show="1">RGBW Dimmer</elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
<elementInformation name="designation" show="1">FGRGBWM-441</elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
</elementInformations>
<informations>drawn by bertus van der werf
(c) by fibaro.com</informations>
<description>
<text y="-27" x="-34" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="90" text="OUT1"/>
<text y="-27" x="6" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="90" text="IN3"/>
<text y="-27" x="26" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="90" text="IN2"/>
<text y="-27" x="66" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="90" text="GND"/>
<text y="-27" x="-74" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="90" text="OUT3"/>
<text y="-27" x="86" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="90" text="P"/>
<text y="-27" x="46" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="90" text="IN1"/>
<rect y="-50" rx="0" x="-20" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<text y="-27" x="-54" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="90" text="OUT2"/>
<text y="-27" x="-14" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="90" text="IN4"/>
<rect y="-50" rx="0" x="-40" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<rect y="-50" rx="0" x="-60" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<rect y="-50" rx="0" x="-80" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<rect y="-50" rx="0" x="-100" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<rect y="-50" rx="0" x="0" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<rect y="-50" rx="0" x="20" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<rect y="-50" rx="0" x="40" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<rect y="-50" rx="0" x="60" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<rect y="-50" rx="0" x="80" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<circle y="-45" x="-95" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<circle y="-45" x="-75" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<circle y="-45" x="-55" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<circle y="-45" x="-35" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<circle y="-45" x="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<circle y="-45" x="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<circle y="-45" x="25" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<circle y="-45" x="45" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<circle y="-45" x="65" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<circle y="-45" x="85" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<polygon x3="110" x2="110" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="100" y2="-40" y3="30" closed="false" y1="-50"/>
<arc y="-50" x="-110" width="220" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" height="160" angle="90" start="180"/>
<arc y="-50" x="-110" width="220" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" height="160" angle="90" start="270"/>
<rect y="40" rx="0" x="-90" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<text y="51" x="-88" color="#000000" font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0" text="*"/>
<text y="-27" x="-95" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="90" text="OUT4"/>
<text y="30" x="-40" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="FIBARO RGBW"/>
<text y="42" x="-38" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="CONTROLLER"/>
<polygon x3="-110" x2="-110" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-100" y2="-40" y3="30" closed="false" y1="-50"/>
<terminal y="-50" x="-70" orientation="n"/>
<terminal y="-50" x="90" orientation="n"/>
<terminal y="-50" x="70" orientation="n"/>
<terminal y="-50" x="50" orientation="n"/>
<terminal y="-50" x="10" orientation="n"/>
<terminal y="-50" x="30" orientation="n"/>
<terminal y="-50" x="-10" orientation="n"/>
<terminal y="-50" x="-30" orientation="n"/>
<terminal y="-50" x="-50" orientation="n"/>
<terminal y="-50" x="-90" orientation="n"/>
</description>
</definition>
@@ -0,0 +1,57 @@
<definition link_type="simple" hotspot_x="50" width="90" height="70" version="0.70" hotspot_y="47" orientation="dyyy" type="element">
<uuid uuid="{3755539c-9ac9-426b-84c6-d214392ae320}"/>
<names>
<name lang="en">Fibaro Roller Shutter 3</name>
<name lang="nl">Fibaro Roller Shutter 3</name>
</names>
<elementInformations>
<elementInformation name="manufacturer" show="1">Fibaro</elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="plant" show="1">230v z-wave</elementInformation>
<elementInformation name="description" show="1">control roller blinds</elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="designation" show="1">FGR-223</elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
</elementInformations>
<informations>drawn by bertus van der werf
(c) Fibaro Groupe</informations>
<description>
<text y="-26" x="-13" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Q2"/>
<text y="-26" x="-1" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="L"/>
<text y="-26" x="-23" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="S2"/>
<text y="-26" x="18" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="N"/>
<rect y="-42" rx="0" x="-35" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<text y="-26" x="7" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Q1"/>
<rect y="-42" rx="0" x="-25" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="-15" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="-5" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="5" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="15" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<circle y="-40" x="-23" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="-13" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="7" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="17" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="-33" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<polygon x3="-45" y4="0" x5="-45" x2="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-35" y2="-42" y5="0" x6="-45" y3="-32" closed="false" x4="-45" y6="0" y1="-42"/>
<polygon x3="35" y4="0" x2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="25" y2="-42" y3="-32" closed="false" x4="35" y1="-42"/>
<arc y="-20" x="-45" width="80" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" height="40" angle="90" start="180"/>
<arc y="-20" x="-45" width="80" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" height="40" angle="90" start="270"/>
<rect y="-5" rx="0" x="-35" width="7" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="7" ry="0"/>
<text y="-26" x="-33" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="S1"/>
<text y="-14" x="-16" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Roller"/>
<text y="-2" x="-22" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Shutter 3"/>
<text y="-5" x="-33" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="B"/>
<circle y="-3.7" x="-33.5" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false" diameter="4"/>
<terminal y="-42" x="0" orientation="n"/>
<terminal y="-42" x="-20" orientation="n"/>
<terminal y="-42" x="-10" orientation="n"/>
<terminal y="-42" x="-30" orientation="n"/>
<terminal y="-42" x="10" orientation="n"/>
<terminal y="-42" x="20" orientation="n"/>
</description>
</definition>
@@ -0,0 +1,56 @@
<definition link_type="simple" hotspot_x="50" width="90" height="70" version="0.70" hotspot_y="47" orientation="dyyy" type="element">
<uuid uuid="{b705d339-cf5e-47b8-82ab-922713e6536d}"/>
<names>
<name lang="en">Fibaro Single Switch 2 FGS-213</name>
<name lang="nl">Fibaro Single Switch 2 FGS-213</name>
</names>
<elementInformations>
<elementInformation name="manufacturer" show="1"></elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="plant" show="1">230V / Bluetooth</elementInformation>
<elementInformation name="description" show="1">Fibaro Single Switch 2 FGS-213</elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="designation" show="1">FGS-213</elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
</elementInformations>
<informations></informations>
<description>
<text y="5" x="-20" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="FGS-213"/>
<text y="-4" x="-24" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="SWITCH 2"/>
<text y="-26" x="-1" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="L"/>
<text y="-26" x="-23" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="S2"/>
<text y="-26" x="-33" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="S1"/>
<text y="-26" x="18" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="N"/>
<rect y="-42" rx="0" x="-35" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<text y="-26" x="8" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Q"/>
<rect y="-42" rx="0" x="-25" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="-15" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="-5" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="5" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<rect y="-42" rx="0" x="15" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="10" ry="0"/>
<circle y="-40" x="-23" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="-13" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="7" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="17" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<circle y="-40" x="-33" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="6"/>
<polygon x3="-45" y4="0" x5="-45" x2="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-35" y2="-42" y5="0" x6="-45" y3="-32" closed="false" x4="-45" y6="0" y1="-42"/>
<polygon x3="35" y4="0" x2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="25" y2="-42" y3="-32" closed="false" x4="35" y1="-42"/>
<arc y="-20" x="-45" width="80" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" height="40" angle="90" start="180"/>
<arc y="-20" x="-45" width="80" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" height="40" angle="90" start="270"/>
<rect y="-5" rx="0" x="-35" width="7" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="7" ry="0"/>
<text y="-26" x="-11" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="L"/>
<text y="-13" x="-20" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="SINGLE"/>
<circle y="-3.7" x="-33.5" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false" diameter="4"/>
<terminal y="-42" x="-30" orientation="n"/>
<terminal y="-42" x="10" orientation="n"/>
<terminal y="-42" x="20" orientation="n"/>
<terminal y="-42" x="0" orientation="n"/>
<terminal y="-42" x="-20" orientation="n"/>
<terminal y="-42" x="-10" orientation="n"/>
</description>
</definition>
@@ -0,0 +1,79 @@
<definition link_type="simple" hotspot_x="234" width="260" height="160" version="0.70" hotspot_y="92" orientation="dyyy" type="element">
<uuid uuid="{5e7f1b4f-1841-4a06-9a7b-2f4eb31a2a32}"/>
<names>
<name lang="en">Fibaro universal binary sensor</name>
<name lang="nl">Fibaro universal binary sensor</name>
</names>
<elementInformations>
<elementInformation name="manufacturer" show="1">Fibaro</elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="plant" show="1">9-30V DC / Z-wave</elementInformation>
<elementInformation name="description" show="1">Universal Binary Sensor</elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="designation" show="1">FGBS-001</elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
</elementInformations>
<informations></informations>
<description>
<text y="13" x="-35" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="OUT1"/>
<text y="-45" x="-230" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="TD"/>
<text y="-25" x="-230" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="TP"/>
<text y="-65" x="-230" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="GND"/>
<text y="55" x="-230" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="P"/>
<text y="15" x="-230" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="IN1"/>
<text y="-5" x="-230" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="IN2"/>
<text y="35" x="-230" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="GND"/>
<rect y="-50" rx="0" x="0" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<rect y="-30" rx="0" x="0" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<rect y="-10" rx="0" x="0" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<rect y="10" rx="0" x="0" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<circle y="-45" x="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<circle y="-25" x="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<circle y="-5" x="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<circle y="15" x="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" diameter="10"/>
<line x2="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="0" length2="1.5" y2="-40" end1="none" length1="1.5" end2="none" y1="-40"/>
<line x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="0" length2="1.5" y2="-20" end1="none" length1="1.5" end2="none" y1="-20"/>
<line x2="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="0" length2="1.5" y2="0" end1="none" length1="1.5" end2="none" y1="0"/>
<line x2="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="0" length2="1.5" y2="20" end1="none" length1="1.5" end2="none" y1="20"/>
<line x2="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-40" length2="1.5" y2="20" end1="none" length1="1.5" end2="none" y1="0"/>
<line x2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-40" length2="1.5" y2="0" end1="none" length1="1.5" end2="none" y1="0"/>
<line x2="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-30" length2="1.5" y2="-5" end1="none" length1="1.5" end2="none" y1="0"/>
<line x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-40" length2="1.5" y2="-20" end1="none" length1="1.5" end2="none" y1="-20"/>
<line x2="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-40" length2="1.5" y2="-20" end1="none" length1="1.5" end2="none" y1="-40"/>
<line x2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-40" length2="1.5" y2="-40" end1="none" length1="1.5" end2="none" y1="-40"/>
<line x2="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-30" length2="1.5" y2="-45" end1="none" length1="1.5" end2="none" y1="-40"/>
<rect y="-30" rx="0" x="-75" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="40" ry="0"/>
<rect y="-20" rx="0" x="-70" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="20" ry="0"/>
<polygon x3="-105" x2="-105" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="0" y2="-50" y3="-45" closed="false" y1="-50"/>
<polygon x3="-105" x2="-105" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="0" y2="30" y3="25" closed="false" y1="30"/>
<rect y="-45" rx="0" x="-110" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" height="70" ry="0"/>
<line x2="-110" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-110" length2="1.5" y2="-45" end1="none" length1="1.5" end2="none" y1="-50"/>
<line x2="-110" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-110" length2="1.5" y2="30" end1="none" length1="1.5" end2="none" y1="25"/>
<polygon x3="-200" y4="-60" x2="-160" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-110" y2="-35" y3="-60" closed="false" x4="-230" y1="-35"/>
<polygon x3="-200" y4="-40" x2="-160" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-110" y2="-25" y3="-40" closed="false" x4="-230" y1="-25"/>
<polygon x3="-200" y4="-80" x2="-160" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-110" y2="-45" y3="-80" closed="false" x4="-230" y1="-45"/>
<polygon x3="-200" y4="0" x2="-160" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-110" y2="-5" y3="0" closed="false" x4="-230" y1="-5"/>
<polygon x3="-200" y4="20" x2="-160" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-110" y2="5" y3="20" closed="false" x4="-230" y1="5"/>
<polygon x3="-200" y4="40" x2="-160" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-110" y2="15" y3="40" closed="false" x4="-230" y1="15"/>
<polygon x3="-200" y4="60" x2="-160" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-110" y2="25" y3="60" closed="false" x4="-230" y1="25"/>
<polygon x3="-200" y4="-20" x2="-160" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-110" y2="-15" y3="-20" closed="false" x4="-230" y1="-15"/>
<text y="-80" x="-230" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="ANT"/>
<text y="-23" x="-35" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="OUT2"/>
<terminal y="0" x="-230" orientation="w"/>
<terminal y="-40" x="20" orientation="e"/>
<terminal y="-60" x="-230" orientation="w"/>
<terminal y="40" x="-230" orientation="w"/>
<terminal y="20" x="-230" orientation="w"/>
<terminal y="-20" x="-230" orientation="w"/>
<terminal y="20" x="20" orientation="e"/>
<terminal y="-80" x="-230" orientation="w"/>
<terminal y="0" x="20" orientation="e"/>
<terminal y="-20" x="20" orientation="e"/>
<terminal y="60" x="-230" orientation="w"/>
<terminal y="-40" x="-230" orientation="w"/>
</description>
</definition>
@@ -0,0 +1,8 @@
<qet-directory>
<names>
<name lang="en">Fibaro</name>
<name lang="de">Fibaro</name>
<name lang="fr">Fibaro</name>
<name lang="cs">Fibaro</name>
</names>
</qet-directory>
@@ -0,0 +1,416 @@
<definition hotspot_x="365" height="210" hotspot_y="104" width="740" type="element" version="0.80" link_type="simple">
<uuid uuid="{6e1450d1-6a58-4698-b0e5-17b3c0e8036a}"/>
<names>
<name lang="en">IPX800 V5</name>
<name lang="fr">IPX800 V5</name>
<name lang="be">IPX800 V5</name>
<name lang="el">IPX800 V5</name>
<name lang="es">IPX800 V5</name>
<name lang="it">IPX800 V5</name>
<name lang="cs">IPX800 V5</name>
<name lang="nl">IPX800 V5</name>
<name lang="pl">IPX800 V5</name>
</names>
<elementInformations>
<elementInformation show="1" name="unity"></elementInformation>
<elementInformation show="1" name="supplier"></elementInformation>
<elementInformation show="1" name="comment"></elementInformation>
<elementInformation show="1" name="label"></elementInformation>
<elementInformation show="1" name="description"></elementInformation>
<elementInformation show="1" name="plant"></elementInformation>
<elementInformation show="1" name="quantity"></elementInformation>
<elementInformation show="1" name="designation">IPX 800 V5</elementInformation>
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
<elementInformation show="1" name="manufacturer">GCE</elementInformation>
</elementInformations>
<informations>Author: The QElectroTech team&#xd;
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<rect x="-350" ry="0" height="30" y="60" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-275.781" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="77" text="EBX" rotation="0"/>
<text color="#000000" x="217" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-62" text="Open Collector" rotation="0"/>
<text color="#000000" x="-187" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="88" text="Gnd" rotation="0"/>
<text color="#000000" x="201" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-72" text="Max Output : 30V / 50mA" rotation="0"/>
<text color="#000000" x="283" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="67" text="LAN" rotation="0"/>
<text color="#000000" x="-192" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-72" text="3" rotation="0"/>
<text color="#000000" x="-349" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="56" text="Powered EBX" rotation="0"/>
<text color="#000000" x="-302.141" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="3" rotation="0"/>
<polygon x3="-50" y1="-60" y2="-30" x2="-40" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-40" antialias="false"/>
<polygon x3="140" y1="-60" y2="-30" x2="150" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="150" antialias="false"/>
<polygon x3="57" y1="-60" y2="-50" x2="70" closed="false" y3="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="70" antialias="false"/>
<polygon x3="-180" y1="-60" y2="-30" x2="-170" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-170" antialias="false"/>
<polygon x3="-120" y1="-60" y2="-30" x2="-110" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-110" antialias="false"/>
<polygon x3="-273" y1="-60" y2="-50" x2="-260" closed="false" y3="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-260" antialias="false"/>
<polygon x3="10" y1="-60" y2="-30" x2="20" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" antialias="false"/>
<polygon x3="-333" y1="-60" y2="-50" x2="-320" closed="false" y3="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-320" antialias="false"/>
<polygon x3="-73" y1="-60" y2="-50" x2="-60" closed="false" y3="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" antialias="false"/>
<polygon x3="-13" y1="-60" y2="-50" x2="0" closed="false" y3="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" antialias="false"/>
<polygon x3="-143" y1="-60" y2="-50" x2="-130" closed="false" y3="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-130" antialias="false"/>
<polygon x3="-203" y1="-60" y2="-50" x2="-190" closed="false" y3="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-190" antialias="false"/>
<polygon x3="80" y1="-60" y2="-30" x2="90" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="90" antialias="false"/>
<rect x="-350" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-310" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x3="-250" y1="-60" y2="-30" x2="-240" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-240" antialias="false"/>
<rect x="-160" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-153.016" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="10" rotation="0"/>
<rect x="-210" ry="0" height="20" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-320" ry="0" height="30" y="60" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="250" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-190" ry="0" height="20" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x3="121" y1="-60" y2="-30" x2="110" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="110" antialias="false"/>
<polygon x3="-269" y1="-60" y2="-30" x2="-280" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-280" antialias="false"/>
<text color="#000000" x="-212" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="77" text="Modbus" rotation="0"/>
<polygon x3="-139" y1="-60" y2="-30" x2="-150" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-150" antialias="false"/>
<polygon x3="-199" y1="-60" y2="-30" x2="-210" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-210" antialias="false"/>
<polygon x3="-69" y1="-60" y2="-30" x2="-80" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-80" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="82" x2="-348" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-348" antialias="false"/>
<text color="#000000" x="-23" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="16" rotation="0"/>
<rect x="170" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="82" x2="-318" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-318" antialias="false"/>
<polygon x3="-9" y1="-60" y2="-30" x2="-20" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" antialias="false"/>
<polygon x3="61" y1="-60" y2="-30" x2="50" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="50" antialias="false"/>
<rect x="-230" ry="0" height="20" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="72" x2="-317.433" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-302.698" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="72" x2="-347.433" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-332.698" antialias="false"/>
<text color="#000000" x="189" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="1" rotation="0"/>
<rect x="190" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-62" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-72" text="5" rotation="0"/>
<line length2="1.5" end1="none" y1="72" y2="82" x2="-332" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-332" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="82" x2="-302" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-302" antialias="false"/>
<rect x="150" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-114" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="12" rotation="0"/>
<line length2="1.5" end1="none" y1="90" y2="90" x2="-170" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-230" antialias="false"/>
<rect x="240" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="82" y2="82" x2="-317" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-315" antialias="false"/>
<rect x="180" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-223" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="88" text="+" rotation="0"/>
<line length2="1.5" end1="none" y1="82" y2="82" x2="-347" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-345" antialias="false"/>
<rect x="190" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-84" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="13" rotation="0"/>
<line length2="1.5" end1="none" y1="82" y2="82" x2="-332" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-335" antialias="false"/>
<rect x="220" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-355" ry="0" height="70" y="-25" width="720" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-202" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="88" text="-" rotation="0"/>
<line length2="1.5" end1="none" y1="82" y2="82" x2="-302" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-305" antialias="false"/>
<rect x="230" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="82" x2="-344" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-344" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="82" x2="-314" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-314" antialias="false"/>
<text color="#000000" x="-62" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="14" rotation="0"/>
<rect x="170" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="280" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-230" ry="0" height="10" y="70" width="60" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-3" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="17" rotation="0"/>
<rect x="280" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="82" x2="-336" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-336" antialias="false"/>
<rect x="150" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="82" x2="-306" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-306" antialias="false"/>
<text color="#000000" x="-44" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="15" rotation="0"/>
<rect x="220" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="198" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="2" rotation="0"/>
<line length2="1.5" end1="none" y1="85" y2="85" x2="-314" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-306" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="85" x2="-344" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-336" antialias="false"/>
<text color="#000000" x="128" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-72" text="8" rotation="0"/>
<text color="#000000" x="178" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="1" rotation="0"/>
<text color="#000000" x="-317" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="79" text="RJ45" rotation="0"/>
<text color="#000000" x="-347" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="79" text="RJ45" rotation="0"/>
<rect x="240" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="230" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-319" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="67" text="EBX 2" rotation="0"/>
<text color="#000000" x="16" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="18" rotation="0"/>
<rect x="180" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-349" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="67" text="EBX 1" rotation="0"/>
<text color="#000000" x="-171" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-62" text="Relay Outputs - Max switched current 10A - 277 VAC" rotation="0"/>
<rect x="200" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="157" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="C" rotation="0"/>
<rect x="250" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="68" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-72" text="7" rotation="0"/>
<rect x="260" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="210" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-192" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="8" rotation="0"/>
<text color="#000000" x="268" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="4" rotation="0"/>
<text color="#000000" x="47" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="19" rotation="0"/>
<text color="#000000" x="208" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="2" rotation="0"/>
<text color="#000000" x="258" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="4" rotation="0"/>
<text color="#000000" x="-3" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-72" text="6" rotation="0"/>
<rect x="210" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="260" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="200" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-322" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-72" text="1" rotation="0"/>
<text color="#000000" x="238" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="3" rotation="0"/>
<text color="#000000" x="-262" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-72" text="2" rotation="0"/>
<text color="#000000" x="228" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="C" rotation="0"/>
<text color="#000000" x="218" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="C" rotation="0"/>
<text color="#000000" x="288" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="C" rotation="0"/>
<rect x="150" ry="0" height="10" y="70" width="120" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="188" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="77" text="Isolated Inputs" rotation="0"/>
<text color="#000000" x="248" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="3" rotation="0"/>
<rect x="-360" ry="0" height="180" y="-90" width="730" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="330" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-62" text="12Vcc" rotation="0"/>
<rect x="45" ry="0" height="4" y="58" width="11" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="65" ry="0" height="4" y="58" width="11" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="70" y2="62" x2="50" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="50" antialias="false"/>
<rect x="85" ry="0" height="4" y="58" width="11" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="105" ry="0" height="4" y="58" width="11" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="70" y2="62" x2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="30" antialias="false"/>
<rect x="-90" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="70" y2="62" x2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="10" antialias="false"/>
<rect x="25" ry="0" height="4" y="58" width="11" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="5" ry="0" height="4" y="58" width="11" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="100" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-30" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="40" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="340" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="128" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="8" rotation="0"/>
<rect x="80" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-180" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="125" ry="0" height="4" y="58" width="11" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-150" ry="0" height="10" y="70" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-310" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-150" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-50" ry="0" height="10" y="70" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-270" ry="0" height="20" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-330" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="70" y2="62" x2="70" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="70" antialias="false"/>
<line length2="1.5" end1="none" y1="70" y2="62" x2="90" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="90" antialias="false"/>
<line length2="1.5" end1="none" y1="70" y2="62" x2="110" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="110" antialias="false"/>
<line length2="1.5" end1="none" y1="70" y2="62" x2="130" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="130" antialias="false"/>
<rect x="-250" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="280" ry="0" height="30" y="60" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="58" y2="50" x2="50" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="50" antialias="false"/>
<rect x="-110" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="10" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-50" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-120" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-47" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="77" text="3.3V" rotation="0"/>
<text color="#000000" x="-144" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="77" text="0V" rotation="0"/>
<rect x="80" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="320" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="140" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="82" x2="282" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="282" antialias="false"/>
<line length2="1.5" end1="none" y1="58" y2="50" x2="110" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="110" antialias="false"/>
<rect x="-270" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-330" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-200" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-350" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="140" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="72" x2="282.567" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="297.302" antialias="false"/>
<rect x="-270" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-50" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="58" y2="50" x2="130" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="130" antialias="false"/>
<rect x="80" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="10" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-120" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-341" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="1" rotation="0"/>
<rect x="320" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="0" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-90" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-200" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="82" x2="298" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="298" antialias="false"/>
<rect x="100" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="40" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-130" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-30" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="58" y2="50" x2="90" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="90" antialias="false"/>
<rect x="340" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-90" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="20" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-250" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-180" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="348" font="Sans Serif,10,-1,5,50,0,0,0,0,0" y="-81" text="-" rotation="0"/>
<rect x="60" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-90" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-20" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="120" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="82" y2="82" x2="283" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="285" antialias="false"/>
<rect x="-290" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-70" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-10" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="58" y2="50" x2="70" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="70" antialias="false"/>
<rect x="-140" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-220" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="58" y2="50" x2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="10" antialias="false"/>
<text color="#000000" x="325" font="Sans Serif,10,-1,5,50,0,0,0,0,0" y="-81" text="+" rotation="0"/>
<text color="#000000" x="126" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="23" rotation="0"/>
<rect x="-50" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="20" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="67" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="20" rotation="0"/>
<line length2="1.5" end1="none" y1="82" y2="82" x2="298" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="295" antialias="false"/>
<dynamic_text text_width="-1" x="-340" z="210" frame="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="10" Halignment="AlignLeft" text_from="UserText" uuid="{f3ddc616-6068-4575-bba2-59e7cc29acdd}" Valignment="AlignTop" rotation="0">
<text>IP: ---:---:---:---</text>
</dynamic_text>
<line length2="1.5" end1="none" y1="58" y2="50" x2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="30" antialias="false"/>
<rect x="120" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-10" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-140" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-110" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="60" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="60" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-220" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="82" x2="286" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="286" antialias="false"/>
<rect x="-290" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-70" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="82" x2="294" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="294" antialias="false"/>
<rect x="-130" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="0" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-322" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="2" rotation="0"/>
<line length2="1.5" end1="none" y1="58" y2="50" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-10" antialias="false"/>
<text color="#000000" x="86" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="21" rotation="0"/>
<text color="#000000" x="-282" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="4" rotation="0"/>
<text color="#000000" x="146" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="24" rotation="0"/>
<text color="#000000" x="-242" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="6&#xa;" rotation="0"/>
<text color="#000000" x="-212" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="7" rotation="0"/>
<text color="#000000" x="-262" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="5" rotation="0"/>
<text color="#000000" x="-82" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="3" rotation="0"/>
<rect x="120" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="106" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="22" rotation="0"/>
<line length2="1.5" end1="none" y1="85" y2="85" x2="286" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="294" antialias="false"/>
<text color="#000000" x="-102" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="2" rotation="0"/>
<rect x="-20" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="120" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-50" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-123" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="1" rotation="0"/>
<text color="#000000" x="28" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="3" rotation="0"/>
<rect x="-150" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="8" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="2" rotation="0"/>
<rect x="-70" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="60" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-13" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="1" rotation="0"/>
<text color="#000000" x="-147" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="Gnd" rotation="0"/>
<rect x="-70" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="80" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-43" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="88" text="+" rotation="0"/>
<text color="#000000" x="-62" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="4" rotation="0"/>
<rect x="40" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="100" ry="0" height="10" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="88" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="6" rotation="0"/>
<rect x="100" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="40" ry="0" height="10" y="90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="68" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="5" rotation="0"/>
<text color="#000000" x="108" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="7" rotation="0"/>
<text color="#000000" x="48" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="88" text="4" rotation="0"/>
<rect x="-15" ry="0" height="4" y="58" width="11" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="70" y2="62" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-10" antialias="false"/>
<dynamic_text text_width="-1" x="-340" z="262" frame="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-25" Halignment="AlignLeft" text_from="UserText" uuid="{5ccf7370-c37a-44c4-a83a-1c00ed557550}" Valignment="AlignTop" rotation="0">
<text>IPX800 - V5</text>
</dynamic_text>
<dynamic_text text_width="-1" x="-335" z="263" frame="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="23" Halignment="AlignLeft" text_from="ElementInfo" uuid="{9386c8eb-75ff-4cdf-beca-097d396c6fab}" Valignment="AlignTop" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line length2="1.5" end1="none" y1="50" y2="50" x2="130" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-40" antialias="false"/>
<line length2="1.5" end1="none" y1="70" y2="50" x2="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-40" antialias="false"/>
<rect x="310" ry="0" height="30" y="60" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="82" x2="312" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="312" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="72" x2="312.567" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="327.302" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="82" x2="328" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="328" antialias="false"/>
<line length2="1.5" end1="none" y1="82" y2="82" x2="313" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="315" antialias="false"/>
<line length2="1.5" end1="none" y1="82" y2="82" x2="328" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="325" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="82" x2="316" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="316" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="82" x2="324" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="324" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="85" x2="316" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="324" antialias="false"/>
<text color="#000000" x="315" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="67" text="EXT" rotation="0"/>
<rect x="320" ry="0" height="20" y="-80" width="40" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="333" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-72" text="Alim" rotation="0"/>
<text color="#000000" x="283" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="79" text="RJ45" rotation="0"/>
<text color="#000000" x="314" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="79" text="RJ12" rotation="0"/>
<rect x="340" ry="0" height="35" y="55" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="340" ry="0" height="20" y="70" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false"/>
<circle x="345" y="75" diameter="10" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false"/>
<circle x="349" y="79" diameter="2" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false"/>
<text color="#000000" x="343" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="62" text="Alim" rotation="0"/>
<text color="#000000" x="344" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="68" text="12V" rotation="0"/>
<rect x="-290" ry="0" height="20" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="90" y2="90" x2="-250" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-290" antialias="false"/>
<text color="#000000" x="-283" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="88" text="+" rotation="0"/>
<text color="#000000" x="-262" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="88" text="-" rotation="0"/>
<rect x="-130" ry="0" height="10" y="70" width="80" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-111" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="77" text="Analog Inputs" rotation="0"/>
<rect x="-20" ry="0" height="10" y="70" width="160" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="39" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="77" text="Digital Inputs" rotation="0"/>
<rect x="-350" ry="0" height="10" y="-80" width="60" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-290" ry="0" height="10" y="-80" width="60" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-220" ry="0" height="10" y="-80" width="60" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-160" ry="0" height="10" y="-80" width="60" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-90" ry="0" height="10" y="-80" width="60" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-30" ry="0" height="10" y="-80" width="60" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="40" ry="0" height="10" y="-80" width="60" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="100" ry="0" height="10" y="-80" width="60" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-131" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-72" text="4" rotation="0"/>
<text color="#000000" x="-172" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="9" rotation="0"/>
<text color="#000000" x="-132" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-82" text="11" rotation="0"/>
<rect x="-290" ry="0" height="10" y="70" width="40" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-350" ry="0" height="60" y="-20" width="10" rx="0" style="line-style:normal;line-weight:normal;filling:green;color:none" antialias="false"/>
<rect x="-335" ry="0" height="15" y="-10" width="120" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false"/>
<text color="#ffffff" x="-334" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="1" text="Ethernet Control System" rotation="0"/>
<rect x="220" ry="0" height="10" y="30" width="140" rx="0" style="line-style:normal;line-weight:normal;filling:green;color:none" antialias="false"/>
<text color="#000000" x="220" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="28" text="GCE Electronics" rotation="0"/>
<rect x="-350" ry="0" height="10" y="-70" width="510" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x3="117" y1="-60" y2="-50" x2="130" closed="false" y3="-29" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="130" antialias="false"/>
<polygon x3="-310" y1="-60" y2="-30" x2="-300" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-300" antialias="false"/>
<polygon x3="-329" y1="-60" y2="-30" x2="-340" closed="false" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-340" antialias="false"/>
<rect x="180" ry="0" height="20" y="-80" width="120" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<terminal x="-130" name="" y="-100" uuid="{f7e5df32-bad1-4007-8281-e828df6e761e}" orientation="n"/>
<terminal x="-260" name="" y="-100" uuid="{63c518d8-7355-4312-8cc8-5ace21ed2d3e}" orientation="n"/>
<terminal x="160" name="" y="100" uuid="{f3ed712b-953e-41f3-9008-8796f6624e9a}" orientation="s"/>
<terminal x="-220" name="" y="100" uuid="{fc184184-e75b-4a71-8245-1c541130e096}" orientation="s"/>
<terminal x="270" name="" y="-100" uuid="{9c0b6d50-d674-4c07-a3b0-a711a14f2671}" orientation="n"/>
<terminal x="210" name="" y="-100" uuid="{37049d06-3b2b-4406-81ad-2a747832b65b}" orientation="n"/>
<terminal x="-340" name="" y="-100" uuid="{9d1b554f-3114-4f57-a2cd-68efdee44314}" orientation="n"/>
<terminal x="-280" name="" y="-100" uuid="{01f27ed2-9baf-4848-928a-a65c794c30a0}" orientation="n"/>
<terminal x="190" name="" y="-100" uuid="{e102a6ba-86f8-4f11-9ef4-26dfb7dc6444}" orientation="n"/>
<terminal x="-180" name="" y="100" uuid="{44293a28-0ab3-426b-9978-dc42cdbff818}" orientation="s"/>
<terminal x="240" name="" y="100" uuid="{0fec9acb-7bce-4b78-9d5d-fa0783259eb0}" orientation="s"/>
<terminal x="-310" name="" y="90" uuid="{62e226ad-3b26-4b3b-aff0-7af1751f60a3}" orientation="s"/>
<terminal x="250" name="" y="-100" uuid="{8c6c4634-67e9-4b64-afd4-648d2b8de698}" orientation="n"/>
<terminal x="-200" name="" y="100" uuid="{0a269863-342a-4f90-89dc-ac81613fa3ab}" orientation="s"/>
<terminal x="260" name="" y="100" uuid="{3ece338e-8750-4cfb-b7e3-95e21eb57732}" orientation="s"/>
<terminal x="-320" name="" y="-100" uuid="{667e0d1c-1348-4d52-9c95-dc0baa77b5fd}" orientation="n"/>
<terminal x="180" name="" y="100" uuid="{470f3843-bc92-4645-84da-b3e0b13e47bd}" orientation="s"/>
<terminal x="330" name="" y="-100" uuid="{f0f160d5-e53b-4d99-b1b5-62def01b1334}" orientation="n"/>
<terminal x="-120" name="" y="100" uuid="{3278ddd4-64e8-41fd-98b9-f72260343fbc}" orientation="s"/>
<terminal x="200" name="" y="100" uuid="{1004a80e-99ef-4bb8-b4ad-4ed8236be83e}" orientation="s"/>
<terminal x="230" name="" y="-100" uuid="{84a22570-7c79-4d40-ba9f-614fba04f20d}" orientation="n"/>
<terminal x="290" name="" y="-100" uuid="{b5e43a79-4284-4048-ae67-b366fca66493}" orientation="n"/>
<terminal x="-150" name="" y="-100" uuid="{9c451400-be0c-4326-8103-eb7d327fb83b}" orientation="n"/>
<terminal x="-300" name="" y="-100" uuid="{ae82b427-6dd5-4bd1-bc7c-97103198d2c2}" orientation="n"/>
<terminal x="220" name="" y="100" uuid="{bdb83249-66e2-45f5-9521-e5b5ffcc7349}" orientation="s"/>
<terminal x="-340" name="" y="90" uuid="{64547e95-de5e-4d6e-9175-12e28ee25f9a}" orientation="s"/>
<terminal x="-100" name="" y="100" uuid="{60d08d94-02bc-4de6-9258-913a7078d0de}" orientation="s"/>
<terminal x="130" name="" y="-100" uuid="{795f5449-2ce1-412f-a190-cb8eb24c5adf}" orientation="n"/>
<terminal x="70" name="" y="100" uuid="{9dcab2bf-e499-455f-b30c-1ad43768218d}" orientation="s"/>
<terminal x="-60" name="" y="100" uuid="{dc52754b-a65f-487b-8b57-a52a7bc2f4a6}" orientation="s"/>
<terminal x="20" name="" y="-100" uuid="{2ef3b5f3-8920-4845-b754-2278638dd99a}" orientation="n"/>
<terminal x="-210" name="" y="-100" uuid="{d3349348-c5c4-4837-ac8d-3fd3489ceed2}" orientation="n"/>
<terminal x="110" name="" y="-100" uuid="{c400f6ff-a69d-4c1f-8950-41a7b7c78e05}" orientation="n"/>
<terminal x="-110" name="" y="-100" uuid="{06546c89-7e53-4097-b8a7-89a443b46f3b}" orientation="n"/>
<terminal x="70" name="" y="-100" uuid="{ecdc3ffb-d892-4f95-8b29-1dea2d71a915}" orientation="n"/>
<terminal x="-10" name="" y="100" uuid="{18925823-ea28-48c1-80af-8e0b89c7bbf5}" orientation="s"/>
<terminal x="-170" name="" y="-100" uuid="{b998e57e-c459-4636-94dc-e074a7aa9894}" orientation="n"/>
<terminal x="-20" name="" y="-100" uuid="{ab2f328e-abb0-4004-b52b-1f754637da3b}" orientation="n"/>
<terminal x="-190" name="" y="-100" uuid="{fcb84127-fea8-4c10-8f82-aabdaa28b0a9}" orientation="n"/>
<terminal x="-260" name="" y="100" uuid="{e97169db-ee41-42b8-acf9-f52d0df6051e}" orientation="s"/>
<terminal x="-240" name="" y="-100" uuid="{778416be-7e0d-4051-ab1a-b285538e47b1}" orientation="n"/>
<terminal x="150" name="" y="-100" uuid="{51798fde-b02e-4aa4-a87a-96893781c270}" orientation="n"/>
<terminal x="-80" name="" y="-100" uuid="{3f9eed64-ce9f-4b00-83a0-dc6b2c58a429}" orientation="n"/>
<terminal x="-80" name="" y="100" uuid="{a4547360-cdb5-479d-98c8-e08bc7d59b28}" orientation="s"/>
<terminal x="10" name="" y="100" uuid="{2949e3bb-39f1-4a24-9cc5-e638d6e4396d}" orientation="s"/>
<terminal x="-60" name="" y="-100" uuid="{8947030b-65c5-42da-b31c-b28cf0927f7a}" orientation="n"/>
<terminal x="320" name="" y="90" uuid="{513f2e8c-f131-4bb4-9556-1dddf14471c0}" orientation="s"/>
<terminal x="350" name="" y="90" uuid="{7ef962fd-ba6b-4062-9b82-35d96c658f30}" orientation="s"/>
<terminal x="30" name="" y="100" uuid="{f1eef48c-a3dc-4a3d-9ecb-e900c78b1dd2}" orientation="s"/>
<terminal x="130" name="" y="100" uuid="{cd87a99f-d1d5-49c3-9bf2-44ff171392a4}" orientation="s"/>
<terminal x="-140" name="" y="100" uuid="{45d9f6c4-6611-49cd-9dff-c306918b0bb1}" orientation="s"/>
<terminal x="-280" name="" y="100" uuid="{9a63063b-592f-467c-b8ae-0ce216534263}" orientation="s"/>
<terminal x="290" name="" y="90" uuid="{58f5b24a-3e5c-4466-b1d7-6ed8a2363edf}" orientation="s"/>
<terminal x="-40" name="" y="100" uuid="{8876cda4-6977-4726-84c8-35698d570adb}" orientation="s"/>
<terminal x="50" name="" y="-100" uuid="{548b8931-e961-4d3c-97af-e73dd646c7f6}" orientation="n"/>
<terminal x="350" name="" y="-100" uuid="{ff8d5475-8ce8-43e2-9dda-b04de201fd63}" orientation="n"/>
<terminal x="90" name="" y="-100" uuid="{8cee19d8-891e-425d-9d0f-8aeb578a332f}" orientation="n"/>
<terminal x="0" name="" y="-100" uuid="{e4fe7b45-e15a-4e00-be84-19ff8e8a3562}" orientation="n"/>
<terminal x="-40" name="" y="-100" uuid="{55088f23-a01e-462b-9e54-593fab0137a7}" orientation="n"/>
<terminal x="90" name="" y="100" uuid="{d2ed74f4-e35e-414f-aef4-9c6804998d77}" orientation="s"/>
<terminal x="110" name="" y="100" uuid="{0e7ede9a-b051-4bf2-9447-33675e183f0e}" orientation="s"/>
<terminal x="50" name="" y="100" uuid="{ed5a438e-3ec7-473c-919e-df797526f78b}" orientation="s"/>
</description>
</definition>
@@ -0,0 +1,113 @@
<definition hotspot_x="95" height="210" hotspot_y="104" width="200" type="element" version="0.80" link_type="simple">
<uuid uuid="{9020b667-d1e2-43ad-8f45-480836f21e68}"/>
<names>
<name lang="en">X-PSU 20</name>
<name lang="fr">X-PSU 20</name>
<name lang="be">X-PSU 20</name>
<name lang="el">X-PSU 20</name>
<name lang="es">X-PSU 20</name>
<name lang="it">X-PSU 20</name>
<name lang="cs">X-PSU 20</name>
<name lang="nl">X-PSU 20</name>
<name lang="pl">X-PSU 20</name>
</names>
<elementInformations>
<elementInformation show="1" name="unity"></elementInformation>
<elementInformation show="1" name="supplier"></elementInformation>
<elementInformation show="1" name="comment"></elementInformation>
<elementInformation show="1" name="label"></elementInformation>
<elementInformation show="1" name="description"></elementInformation>
<elementInformation show="1" name="plant"></elementInformation>
<elementInformation show="1" name="quantity"></elementInformation>
<elementInformation show="1" name="designation">X-PSU 20</elementInformation>
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
<elementInformation show="1" name="manufacturer">GCE</elementInformation>
</elementInformations>
<informations>Author: The QElectroTech team&#xd;
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text color="#000000" x="-79" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-71" text="100-240VAC" rotation="0"/>
<text color="#000000" x="57.9063" font="Sans Serif,8,-1,5,50,0,0,0,0,0" y="88" text="2" rotation="0"/>
<text color="#000000" x="51.5153" font="Sans Serif,8,-1,5,50,0,0,0,0,0" y="79" text="GND" rotation="0"/>
<text color="#000000" x="77.8125" font="Sans Serif,8,-1,5,50,0,0,0,0,0" y="88" text="3" rotation="0"/>
<text color="#000000" x="-74.2656" font="Sans Serif,8,-1,5,50,0,0,0,0,0" y="69" text="IN" rotation="0"/>
<text color="#000000" x="38" font="Sans Serif,8,-1,5,50,0,0,0,0,0" y="88" text="1" rotation="0"/>
<text color="#000000" x="29.8434" font="Sans Serif,8,-1,5,50,0,0,0,0,0" y="79" text="+12v" rotation="0"/>
<rect x="-80" ry="0" height="30" y="60" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="72.0466" font="Sans Serif,8,-1,5,50,0,0,0,0,0" y="79" text="BAT" rotation="0"/>
<text color="#000000" x="-79" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="56" text="Powered EBX" rotation="0"/>
<rect x="50" ry="0" height="30" y="70" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-50" ry="0" height="30" y="60" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="70" ry="0" height="30" y="70" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="82" x2="-78" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-78" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="82" x2="-48" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-48" antialias="false"/>
<rect x="30" ry="0" height="30" y="70" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="72" x2="-47.433" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-32.698" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="72" x2="-77.433" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-62.698" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="82" x2="-62" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-62" antialias="false"/>
<line length2="1.5" end1="none" y1="72" y2="82" x2="-32" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-32" antialias="false"/>
<line length2="1.5" end1="none" y1="90" y2="90" x2="90.0515" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="30.0353" antialias="false"/>
<line length2="1.5" end1="none" y1="82" y2="82" x2="-47" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-45" antialias="false"/>
<line length2="1.5" end1="none" y1="82" y2="82" x2="-77" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-75" antialias="false"/>
<line length2="1.5" end1="none" y1="82" y2="82" x2="-62" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-65" antialias="false"/>
<rect x="-85" ry="0" height="70" y="-25" width="180" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="82" y2="82" x2="-32" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-35" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="82" x2="-74" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-74" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="82" x2="-44" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-44" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="82" x2="-66" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-66" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="82" x2="-36" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-36" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="85" x2="-44" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-36" antialias="false"/>
<line length2="1.5" end1="none" y1="85" y2="85" x2="-74" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-66" antialias="false"/>
<text color="#000000" x="-47" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="79" text="RJ45" rotation="0"/>
<text color="#000000" x="-77" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="79" text="RJ45" rotation="0"/>
<text color="#000000" x="-49" font="Sans Serif,8,-1,5,50,0,0,0,0,0" y="69" text="OUT" rotation="0"/>
<rect x="-90" ry="0" height="180" y="-90" width="190" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-68" font="Sans Serif,6,-1,5,50,0,0,0,0,0" y="-63" text="0.6A" rotation="0"/>
<rect x="-60" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="0" ry="0" height="20" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-80" ry="0" height="10" y="-100" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-80" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-60" ry="0" height="10" y="-90" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" x="-54" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-81" text="N" rotation="0"/>
<text color="#000000" x="-76" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-81" text="Ph" rotation="0"/>
<rect x="-80" ry="0" height="20" y="-80" width="40" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-20" ry="0" height="20" y="80" width="20" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="90" y2="90" x2="20.0299" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-19.9809" antialias="false"/>
<text color="#000000" x="-15" font="Sans Serif,8,-1,5,50,0,0,0,0,0" y="88" text="C1" rotation="0"/>
<text color="#000000" x="4.02534" font="Sans Serif,8,-1,5,50,0,0,0,0,0" y="88" text="C2" rotation="0"/>
<rect x="-20" ry="0" height="20" y="60" width="40" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect x="-80" ry="0" height="60" y="-20" width="10" rx="0" style="line-style:normal;line-weight:normal;filling:green;color:none" antialias="false"/>
<rect x="-15" ry="0" height="15" y="-10" width="105" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false"/>
<text color="#ffffff" x="-12" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="1" text="20Watts Power Supply" rotation="0"/>
<rect x="-30" ry="0" height="10" y="30" width="120" rx="0" style="line-style:normal;line-weight:normal;filling:green;color:none" antialias="false"/>
<text color="#000000" x="-30" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="28" text="GCE Electronics" rotation="0"/>
<line length2="1.5" end1="none" y1="80" y2="80" x2="90" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="30" antialias="false"/>
<circle x="-7.5" y="62.5" diameter="15" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line length2="1.5" end1="none" y1="68" y2="68" x2="5" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="-5" antialias="false"/>
<polygon y1="68" y2="60" x2="0" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" antialias="false"/>
<polygon y4="68" y7="80" x3="-6" x5="6" x7="10" y5="74" y1="80" y2="74" x2="-10" closed="false" x6="10" y3="74" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" x4="0" y6="74" antialias="false"/>
<polygon x3="-4" y1="72" y2="74" x2="-6" closed="false" y3="74" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-6" antialias="false"/>
<polygon y4="70" x3="60" y1="75" y2="55" x2="-10" closed="false" y3="55" style="line-style:dashed;line-weight:normal;filling:none;color:black" x1="-10" x4="60" antialias="false"/>
<line length2="1.5" end1="none" y1="60" y2="60" x2="37" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="27" antialias="false"/>
<line length2="1.5" end1="none" y1="62" y2="62" x2="35" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="29" antialias="false"/>
<line length2="1.5" end1="none" y1="64" y2="64" x2="33" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="31" antialias="false"/>
<line length2="1.5" end1="none" y1="60" y2="55" x2="32" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" end2="none" x1="32" antialias="false"/>
<dynamic_text text_width="-1" x="45" z="262" frame="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-25" Halignment="AlignLeft" text_from="UserText" uuid="{5ccf7370-c37a-44c4-a83a-1c00ed557550}" Valignment="AlignTop" rotation="0">
<text>X-PSU 20</text>
</dynamic_text>
<dynamic_text text_width="-1" x="-68" z="263" frame="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-25" Halignment="AlignLeft" text_from="ElementInfo" uuid="{9386c8eb-75ff-4cdf-beca-097d396c6fab}" Valignment="AlignTop" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal x="40" name="" y="100" uuid="{fc184184-e75b-4a71-8245-1c541130e096}" orientation="s"/>
<terminal x="-70" name="" y="90" uuid="{64547e95-de5e-4d6e-9175-12e28ee25f9a}" orientation="s"/>
<terminal x="10" name="" y="100" uuid="{e97169db-ee41-42b8-acf9-f52d0df6051e}" orientation="s"/>
<terminal x="-40" name="" y="90" uuid="{62e226ad-3b26-4b3b-aff0-7af1751f60a3}" orientation="s"/>
<terminal x="-70" name="" y="-100" uuid="{f0f160d5-e53b-4d99-b1b5-62def01b1334}" orientation="n"/>
<terminal x="80" name="" y="100" uuid="{44293a28-0ab3-426b-9978-dc42cdbff818}" orientation="s"/>
<terminal x="-10" name="" y="100" uuid="{9a63063b-592f-467c-b8ae-0ce216534263}" orientation="s"/>
<terminal x="60" name="" y="100" uuid="{0a269863-342a-4f90-89dc-ac81613fa3ab}" orientation="s"/>
<terminal x="-50" name="" y="-100" uuid="{ff8d5475-8ce8-43e2-9dda-b04de201fd63}" orientation="n"/>
</description>
</definition>
@@ -0,0 +1,50 @@
<definition hotspot_y="34" version="0.80" orientation="dyyy" hotspot_x="31" width="40" height="50" link_type="simple" type="element">
<uuid uuid="{9eb45f48-9e0a-4167-bcee-278c94e66ad9}"/>
<names>
<name lang="nl">Clogging</name>
<name lang="de">Clogging</name>
<name lang="it">Clogging</name>
<name lang="es">Clogging</name>
<name lang="pl">Clogging</name>
<name lang="cs">Clogging</name>
<name lang="fr">Clogging</name>
<name lang="en">Clogging</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line end1="none" length2="1.5" y2="-19" y1="-19" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-7" end2="none" x1="-20" antialias="false"/>
<polygon y2="0" y1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" x3="-10" closed="false" y3="-20" x1="0" antialias="true"/>
<dynamic_text z="4" Valignment="AlignTop" font="Sans Serif,4,-1,5,25,0,0,0,0,0" x="-10" rotation="0" uuid="{8e21a201-fac9-4e57-9cb0-8d6ce544a344}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-1" frame="false">
<text>1</text>
</dynamic_text>
<dynamic_text z="4" Valignment="AlignTop" font="Sans Serif,4,-1,5,25,0,0,0,0,0" x="-19" rotation="0" uuid="{8e21a201-fac9-4e57-9cb0-8d6ce544a344}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-1" frame="false">
<text>4</text>
</dynamic_text>
<dynamic_text z="5" Valignment="AlignTop" font="Sans Serif,4,-1,5,25,0,0,0,0,0" x="-21" rotation="0" uuid="{5fd0afeb-0396-40e6-9f03-266c3c10544a}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>2</text>
</dynamic_text>
<dynamic_text z="6" Valignment="AlignTop" font="Sans Serif,4,-1,5,25,0,0,0,0,0" x="-10" rotation="0" uuid="{c9f6bdf3-cb08-47dd-b723-e42d8d613f86}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>3</text>
</dynamic_text>
<dynamic_text z="7" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="1" rotation="0" uuid="{7c7f2186-ed1f-4c89-b904-ef6a4cabd088}" text_from="ElementInfo" Halignment="AlignLeft" text_width="-1" y="-20.5" frame="false">
<text/>
<info_name>label</info_name>
</dynamic_text>
<line end1="none" length2="1.5" y2="-19" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-20" end2="none" x1="-20" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-28" rotation="0" uuid="{0352b3da-e708-40f7-af24-cbe888b57b2d}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-16" frame="false">
<text>ΔP</text>
</dynamic_text>
<line end1="none" length2="1.5" y2="6" y1="6" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-17" end2="none" x1="-23" antialias="false"/>
<line end1="none" length2="1.5" y2="4" y1="4" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-18" end2="none" x1="-22" antialias="false"/>
<line end1="none" length2="1.5" y2="2" y1="2" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-19" end2="none" x1="-21" antialias="false"/>
<line end1="none" length2="1.5" y2="-6" y1="-6" length1="1.5" style="line-style:dotted;line-weight:normal;filling:none;color:black" x2="-4" end2="none" x1="-14" antialias="false"/>
<rect x="-26" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="29" height="41" y="-30" antialias="false"/>
<terminal x="-20" orientation="s" y="10"/>
<terminal x="0" orientation="s" y="10"/>
<terminal x="0" orientation="n" y="-30"/>
<terminal x="-20" orientation="n" y="-30"/>
</description>
</definition>
@@ -0,0 +1,7 @@
<qet-directory>
<names>
<name lang="en">Hydac</name>
<name lang="de">Hydac</name>
<name lang="cs">Hydac</name>
</names>
</qet-directory>
@@ -0,0 +1,112 @@
<definition hotspot_y="34" version="0.80" orientation="dyyy" hotspot_x="28" width="120" height="60" link_type="master" type="element">
<uuid uuid="{0e73f745-dfd7-4613-8c06-65089becbdfe}"/>
<names>
<name lang="ar">Emergency stop</name>
<name lang="en">Emergency stop</name>
<name lang="fr">Emergency stop</name>
<name lang="de">Emergency stop</name>
<name lang="es">Emergency stop</name>
<name lang="nl">Emergency stop</name>
<name lang="cs">Emergency stop</name>
<name lang="pl">Emergency stop</name>
<name lang="it">Emergency stop</name>
</names>
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<circle x="73" diameter="14" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-12" antialias="true"/>
<polygon y5="-5" y4="-5" y2="-5" y1="-5" style="line-style:dotted;line-weight:normal;filling:none;color:black" x2="-8" x4="-12" x3="-10" x5="-22" closed="false" y3="0" x1="65" antialias="false"/>
<arc x="-2.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<arc x="-2.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<line end1="none" length2="1.5" y2="-12" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="80" end2="none" x1="80" antialias="false"/>
<line end1="none" length2="1.5" y2="15" y1="2" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="80" end2="none" x1="80" antialias="false"/>
<arc x="37.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<line end1="none" length2="1.5" y2="0" y1="-10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="85" end2="none" x1="75" antialias="false"/>
<arc x="77.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<line end1="none" length2="1.5" y2="-10" y1="0" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="85" end2="none" x1="75" antialias="false"/>
<arc x="37.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<arc x="17.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<dynamic_text z="10" Valignment="AlignTop" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" x="78" rotation="0" uuid="{29d2349f-5f03-47cb-9b7a-b373fa6b3aad}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-34" frame="false">
<text>+</text>
</dynamic_text>
<dynamic_text z="10" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="95" rotation="0" uuid="{8053f011-a2d9-400b-b527-e8d14d50237e}" text_from="ElementInfo" Halignment="AlignLeft" text_width="-1" y="-15" frame="true">
<text/>
<info_name>label</info_name>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-14" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>12</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="64" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>X2</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="26" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>42</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="25" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>41</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="45.5" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>33</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="65" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>X1</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="6" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>22</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="46" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>34</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="5" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>21</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-15" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>11</text>
</dynamic_text>
<arc x="17.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<arc x="77.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<polygon y2="5" y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" x3="20" closed="false" y3="15" x1="25" antialias="true"/>
<arc x="57.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<arc x="57.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<line end1="none" length2="1.5" y2="0" y1="-10" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-22" end2="none" x1="-22" antialias="false"/>
<line end1="none" length2="1.5" y2="-14" y1="-14" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="26" end2="none" x1="20" antialias="false"/>
<polygon y2="5" y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" x3="0" closed="false" y3="15" x1="5" antialias="true"/>
<line end1="none" length2="1.5" y2="-14" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" end2="none" x1="20" antialias="false"/>
<polygon y2="5" y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="60" x3="60" closed="false" y3="15" x1="55" antialias="true"/>
<arc x="-26" angle="-180" start="-90" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" height="10" y="-10" antialias="true"/>
<polygon y2="5" y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" x3="40" closed="false" y3="15" x1="45" antialias="true"/>
<line end1="none" length2="1.5" y2="-14" y1="-14" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="6" end2="none" x1="0" antialias="false"/>
<line end1="none" length2="1.5" y2="-14" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<line end1="none" length2="1.5" y2="-14" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="60" end2="none" x1="60" antialias="false"/>
<line end1="none" length2="1.5" y2="-14" y1="-14" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="46" end2="none" x1="40" antialias="false"/>
<line end1="none" length2="1.5" y2="-14" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" end2="none" x1="40" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-16" end2="none" x1="-16" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="90" end2="none" x1="90" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-3" end2="none" x1="-16" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="17" end2="none" x1="3" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="37" end2="none" x1="23" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="57" end2="none" x1="43" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="77" end2="none" x1="63" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="90" end2="none" x1="83" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="90" end2="none" x1="83" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="63" end2="none" x1="77" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="57" end2="none" x1="43" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-3" end2="none" x1="-16" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="17" end2="none" x1="3" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="37" end2="none" x1="23" antialias="false"/>
<terminal x="0" orientation="s" y="20"/>
<terminal x="80" orientation="s" y="20"/>
<terminal x="80" orientation="n" y="-30"/>
<terminal x="60" orientation="s" y="20"/>
<terminal x="40" orientation="n" y="-30"/>
<terminal x="20" orientation="n" y="-30"/>
<terminal x="20" orientation="s" y="20"/>
<terminal x="40" orientation="s" y="20"/>
<terminal x="0" orientation="n" y="-30"/>
<terminal x="60" orientation="n" y="-30"/>
</description>
</definition>
@@ -0,0 +1,7 @@
<qet-directory>
<names>
<name lang="en">IDEC</name>
<name lang="de">IDEC</name>
<name lang="cs">IDEC</name>
</names>
</qet-directory>
@@ -0,0 +1,82 @@
<definition hotspot_y="34" version="0.90" hotspot_x="75" width="350" height="70" link_type="simple" type="element">
<uuid uuid="{6350fcc1-ff86-40f4-9785-eb97bccdd3ab}"/>
<names>
<name lang="en">LENZE Inverter i510 Modbus RTU</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="6" end2="none" x1="-6" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="235" rotation="0" text="TA" y="22"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="155" rotation="0" text="NC" y="22"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="232" rotation="0" text="DO1" y="-15"/>
<line end1="none" length2="1.5" y2="-18" y1="-18" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="4" end2="none" x1="-4" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="13" rotation="0" text="GND" y="-15"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="255" rotation="0" text="TB" y="22"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="252" rotation="0" text="GND" y="-15"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="215" rotation="0" text="COM" y="22"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="75" rotation="0" text="AO1" y="-15"/>
<line end1="none" length2="1.5" y2="-16" y1="-16" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="1" end2="none" x1="-1" antialias="false"/>
<rect x="210" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="60" height="20" y="10" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="93" rotation="0" text="10V" y="-15"/>
<line end1="none" length2="1.5" y2="-20" y1="-26" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-24" rotation="0" text="L3" y="-15"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="32" rotation="0" text="AI1" y="-15"/>
<rect x="-70" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="80" height="20" y="-30" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="55" rotation="0" text="AI2" y="-15"/>
<line end1="none" length2="1.5" y2="21" y1="21" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="6" end2="none" x1="-6" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="170" rotation="0" text="COM" y="22"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="114" rotation="0" text="24V" y="-15"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="134" rotation="0" text="DI1" y="-15"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="194" rotation="0" text="DI4" y="-15"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="154" rotation="0" text="DI2" y="-15"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="174" rotation="0" text="DI3" y="-15"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="135" rotation="0" text="NO" y="22"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="214" rotation="0" text="DI5" y="-15"/>
<line end1="none" length2="1.5" y2="19" y1="19" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="4" end2="none" x1="-4" antialias="false"/>
<line end1="none" length2="1.5" y2="17" y1="17" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="1" end2="none" x1="-1" antialias="false"/>
<dynamic_text z="28" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="55" rotation="0" uuid="{5b146f38-9c8c-410e-827c-456cac6fe424}" text_from="ElementInfo" Halignment="AlignLeft" keep_visual_rotation="true" text_width="-1" y="6" frame="true">
<text/>
<info_name>label</info_name>
</dynamic_text>
<line end1="none" length2="1.5" y2="27" y1="21" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-44" rotation="0" text="L2" y="-15"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-62" rotation="0" text="U" y="22"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-64" rotation="0" text="L1" y="-15"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-24" rotation="0" text="W" y="22"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-42" rotation="0" text="V" y="22"/>
<text color="#000000" font="Sans Serif,8,-1,5,50,0,0,0,0,0" x="-66" rotation="0" text="LENZE Inverter i510 Modbus RTU" y="4"/>
<rect x="-70" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="340" height="60" y="-30" antialias="false"/>
<rect x="10" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="260" height="20" y="-30" antialias="false"/>
<rect x="130" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="60" height="20" y="10" antialias="false"/>
<rect x="-70" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="80" height="20" y="10" antialias="false"/>
<terminal x="240" orientation="n" uuid="{5308f271-40ff-4fad-a15e-3ccdc12599a1}" y="-30" name="" type="Generic"/>
<terminal x="260" orientation="n" uuid="{a1908904-7677-43b7-bce2-1f30cb017299}" y="-30" name="" type="Generic"/>
<terminal x="220" orientation="s" uuid="{6e1ddc81-6d67-44fc-ad1b-36f3474acbc5}" y="30" name="" type="Generic"/>
<terminal x="240" orientation="s" uuid="{2a5f9a7b-a44f-486c-86f5-0a6dacd5a9b8}" y="30" name="" type="Generic"/>
<terminal x="260" orientation="s" uuid="{b0b790c5-a3fa-44c0-acfd-83c5f3e859fd}" y="30" name="" type="Generic"/>
<terminal x="-20" orientation="s" uuid="{7093fa19-c0cc-4024-8adc-a36be50f4aeb}" y="30" name="" type="Generic"/>
<terminal x="180" orientation="s" uuid="{7b89ae26-7d9b-4d11-aa17-5de00f94b559}" y="30" name="" type="Generic"/>
<terminal x="80" orientation="n" uuid="{bc2bcbbb-0408-4a49-81a4-b74e3bb9eed7}" y="-30" name="" type="Generic"/>
<terminal x="120" orientation="n" uuid="{9f4744bd-b6db-4ef8-8a69-c62736f266bb}" y="-30" name="" type="Generic"/>
<terminal x="-20" orientation="n" uuid="{60fe5193-c1ae-44fa-ad90-749fc70f12a0}" y="-30" name="" type="Generic"/>
<terminal x="-40" orientation="s" uuid="{9a4387d2-cb57-4947-b65b-1ddf0879d7d0}" y="30" name="" type="Generic"/>
<terminal x="100" orientation="n" uuid="{e047460a-afda-434f-b94e-fd985df2ac5a}" y="-30" name="" type="Generic"/>
<terminal x="-60" orientation="s" uuid="{db159fac-95a5-4579-bac2-e8dd9f13daba}" y="30" name="" type="Generic"/>
<terminal x="-60" orientation="n" uuid="{43314b74-232a-4cf8-83f2-5eae7f1d45bb}" y="-30" name="" type="Generic"/>
<terminal x="20" orientation="n" uuid="{e5a1c547-f218-44c8-877c-af03c09ee5fa}" y="-30" name="" type="Generic"/>
<terminal x="160" orientation="s" uuid="{3c925f40-f891-4ad1-8470-285ae8ff7536}" y="30" name="" type="Generic"/>
<terminal x="140" orientation="s" uuid="{31218c67-fcf0-474f-b19b-db1f69db2a19}" y="30" name="" type="Generic"/>
<terminal x="60" orientation="n" uuid="{bfb092e7-7f91-4df7-b5e3-5f2e2f4a1693}" y="-30" name="" type="Generic"/>
<terminal x="-40" orientation="n" uuid="{29a2d52e-ad23-4605-80a9-e961c30467bc}" y="-30" name="" type="Generic"/>
<terminal x="0" orientation="s" uuid="{d8ca5c60-38c2-4832-8c69-921e80619985}" y="30" name="" type="Generic"/>
<terminal x="180" orientation="n" uuid="{6ada8eb8-a79f-4b4b-8930-ca284ba109da}" y="-30" name="" type="Generic"/>
<terminal x="220" orientation="n" uuid="{64fe2d1e-e30e-4ea1-8726-cf7b499cacf7}" y="-30" name="" type="Generic"/>
<terminal x="40" orientation="n" uuid="{edf94dbc-d9e2-4fb1-b431-7927b59372aa}" y="-30" name="" type="Generic"/>
<terminal x="200" orientation="n" uuid="{19855d16-866a-48a3-ac1b-8fd289a2c7a9}" y="-30" name="" type="Generic"/>
<terminal x="140" orientation="n" uuid="{0f4304de-8193-455f-8885-7c39f3fb04fa}" y="-30" name="" type="Generic"/>
<terminal x="0" orientation="n" uuid="{0e44a592-e16f-4192-9500-5f4b71e2e57b}" y="-30" name="" type="Generic"/>
<terminal x="160" orientation="n" uuid="{5112da3b-8592-41b8-8973-296ebf1f7615}" y="-30" name="" type="Generic"/>
</description>
</definition>
@@ -0,0 +1,275 @@
<definition hotspot_y="54" version="0.80" orientation="dyyy" hotspot_x="275" width="550" height="120" link_type="simple" type="element">
<uuid uuid="{31249657-e6a4-40b6-80e8-17a14ad4cf4f}"/>
<names>
<name lang="en">LENZE Servo Drive 9400</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<arc x="-203" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-45" antialias="true"/>
<arc x="-243" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="257" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="97" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<rect x="-80.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<rect x="-240.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<arc x="-183" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<rect x="39.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<arc x="-63" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<rect x="-200.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<arc x="-263" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="104" rotation="0" text="X7" y="30"/>
<arc x="-223" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-10" rotation="0" text="SM100" y="30"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-200" end2="none" x1="-200" antialias="false"/>
<arc x="-163" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-103" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-263" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-240" end2="none" x1="-240" antialias="false"/>
<arc x="-223" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-203" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-45" antialias="true"/>
<rect x="-40.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<rect x="-0.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<rect x="-120.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<arc x="57" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="217" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-243" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<dynamic_text z="28" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="210" rotation="0" uuid="{5b146f38-9c8c-410e-827c-456cac6fe424}" text_from="ElementInfo" Halignment="AlignLeft" text_width="-1" y="20" frame="true">
<text/>
<info_name>label</info_name>
</dynamic_text>
<arc x="-123" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-45" antialias="true"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-120" end2="none" x1="-120" antialias="false"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-40" end2="none" x1="-40" antialias="false"/>
<rect x="-200.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-42.198" antialias="false"/>
<arc x="-243" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<rect x="-240.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<arc x="137" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-203" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="4" rotation="0" text="X4" y="-13"/>
<rect x="-260.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<arc x="-23" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<rect x="-220.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<arc x="-43" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-45" antialias="true"/>
<rect x="-220.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-260" end2="none" x1="-260" antialias="false"/>
<arc x="117" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-45" antialias="true"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-80" end2="none" x1="-80" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-240" end2="none" x1="-240" antialias="false"/>
<line end1="none" length2="1.5" y2="-49" y1="-45" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-200" end2="none" x1="-200" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="53" rotation="0" text="SIA" y="42"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-220" end2="none" x1="-220" antialias="false"/>
<arc x="-143" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-83" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-183" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-123" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<arc x="237" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="77" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-220" end2="none" x1="-220" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="92" rotation="0" text="RESOLVER" y="42"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" end2="none" x1="40" antialias="false"/>
<arc x="-43" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<arc x="257" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="253" rotation="0" text="DI8" y="-27"/>
<arc x="-83" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<arc x="-123" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-45" antialias="true"/>
<arc x="97" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-63" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-223" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<rect x="-140.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<arc x="-83" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="77" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-143" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="237" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-235" rotation="0" text="X105" y="29"/>
<arc x="-163" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-3" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-140" end2="none" x1="-140" antialias="false"/>
<arc x="157" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="164" rotation="0" text="X5" y="-13"/>
<arc x="217" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="57" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-103" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-143" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<rect x="-120.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-42.198" antialias="false"/>
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-147" rotation="0" text="X3" y="-13"/>
<rect x="-180.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<arc x="117" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-45" antialias="true"/>
<rect x="-140.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<arc x="-3" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<arc x="-43" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-45" antialias="true"/>
<rect x="-100.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<rect x="80" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="60" height="34" y="16" antialias="false"/>
<rect x="-180.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<arc x="37" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-45" antialias="true"/>
<arc x="197" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-45" antialias="true"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-100" end2="none" x1="-100" antialias="false"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-180" end2="none" x1="-180" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="34" rotation="0" text="SIB" y="42"/>
<arc x="37" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<arc x="-103" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<rect x="-160.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<rect x="19.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<arc x="-183" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<rect x="-80.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<rect x="79.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<rect x="239.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="75" rotation="0" text="GI" y="-27"/>
<rect x="59.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<rect x="-100.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<rect x="219.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-140" end2="none" x1="-140" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="133" rotation="0" text="DI2" y="-27"/>
<rect x="-60.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<rect x="99.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-180" end2="none" x1="-180" antialias="false"/>
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-255" rotation="0" text="X2" y="-13"/>
<rect x="259.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-47" rotation="0" text="DO1" y="42"/>
<rect x="-40.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-42.198" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-160" end2="none" x1="-160" antialias="false"/>
<rect x="119.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-42.198" antialias="false"/>
<rect x="-260.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<line end1="none" length2="1.5" y2="-49" y1="-45" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-40" end2="none" x1="-40" antialias="false"/>
<line end1="none" length2="1.5" y2="-49" y1="-45" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="120" end2="none" x1="120" antialias="false"/>
<line end1="none" length2="1.5" y2="-49" y1="-45" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-120" end2="none" x1="-120" antialias="false"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-260" end2="none" x1="-260" antialias="false"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" end2="none" x1="20" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-45" rotation="0" text="GO" y="-27"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-100" end2="none" x1="-100" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="220" end2="none" x1="220" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="16" rotation="0" text="GI" y="42"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="60" end2="none" x1="60" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="240" end2="none" x1="240" antialias="false"/>
<arc x="17" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-80" end2="none" x1="-80" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="154" rotation="0" text="DI3" y="-27"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="80" end2="none" x1="80" antialias="false"/>
<arc x="17" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="177" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<rect x="109.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-225" rotation="0" text="GA" y="-27"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-60" end2="none" x1="-60" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-7" rotation="0" text="24O" y="42"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="110" end2="none" x1="110" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="100" end2="none" x1="100" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="260" end2="none" x1="260" antialias="false"/>
<arc x="137" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="107" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="49" antialias="true"/>
<arc x="-23" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="92" rotation="0" text="RFI" y="-27"/>
<arc x="37" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-45" antialias="true"/>
<rect x="59.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<arc x="197" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-45" antialias="true"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="113" rotation="0" text="DI1" y="-27"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="13" rotation="0" text="DO2" y="-27"/>
<arc x="17" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="177" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="60" end2="none" x1="60" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-25" rotation="0" text="GO" y="42"/>
<arc x="157" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-3" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<rect x="-50" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="121" height="34" y="16" antialias="false"/>
<rect x="39.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-42.198" antialias="false"/>
<rect x="199.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-42.198" antialias="false"/>
<rect x="19.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-167" rotation="0" text="A1+" y="-27"/>
<rect x="179.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<rect x="-20.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="174" rotation="0" text="DI4" y="-27"/>
<arc x="57" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<rect x="139.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="34" rotation="0" text="DO3" y="-27"/>
<rect x="159.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<rect x="-0.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<rect x="-20.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="46.802" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="180" end2="none" x1="180" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="194" rotation="0" text="DI5" y="-27"/>
<line end1="none" length2="1.5" y2="56" y1="60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-20" end2="none" x1="-20" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" end2="none" x1="20" antialias="false"/>
<arc x="-23" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-146" rotation="0" text="A1-" y="-27"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-20" end2="none" x1="-20" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="140" end2="none" x1="140" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="160" end2="none" x1="160" antialias="false"/>
<line end1="none" length2="1.5" y2="-49" y1="-45" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="200" end2="none" x1="200" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="214" rotation="0" text="DI6" y="-27"/>
<line end1="none" length2="1.5" y2="-49" y1="-45" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" end2="none" x1="40" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="234" rotation="0" text="DI7" y="-27"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-28" rotation="0" text="24O" y="-27"/>
<rect x="70" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="200" height="30" y="-40" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-105" rotation="0" text="L3" y="41"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-7" rotation="0" text="DO1" y="-27"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-208" rotation="0" text="AO1" y="-27"/>
<rect x="-150" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="80" height="35" y="15" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="52" rotation="0" text="DO4" y="-27"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-187" rotation="0" text="AO2" y="-27"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-252" rotation="0" text="+24E" y="-27"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-126" rotation="0" text="A1-" y="-27"/>
<rect x="-50" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="120" height="30" y="-40" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-106" rotation="0" text="A1R" y="-27"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-86" rotation="0" text="A2+" y="-27"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-66" rotation="0" text="A2-" y="-27"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-266" rotation="0" text="GE" y="-27"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-184" rotation="0" text="PE" y="42"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-85" rotation="0" text="PE" y="41"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-125" rotation="0" text="L2" y="41"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-262" rotation="0" text="U" y="42"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-204" rotation="0" text="PE" y="42"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-145" rotation="0" text="L1" y="41"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-224" rotation="0" text="W" y="42"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-242" rotation="0" text="V" y="42"/>
<text color="#000000" font="Sans Serif,8,-1,5,50,0,0,0,0,0" x="-265" rotation="0" text="LENZE Servo Drive 9400" y="8"/>
<rect x="-270" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="540" height="90" y="-40" antialias="false"/>
<rect x="-230" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="180" height="30" y="-40" antialias="false"/>
<rect x="-270" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="40" height="30" y="-40" antialias="false"/>
<rect x="-270" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="100" height="35" y="15" antialias="false"/>
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-125" rotation="0" text="X100" y="29"/>
<arc x="-263" angle="180.063" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="50" antialias="true"/>
<terminal x="-240" orientation="n" y="-50"/>
<terminal x="20" orientation="s" y="60"/>
<terminal x="-260" orientation="s" y="60"/>
<terminal x="-200" orientation="s" y="60"/>
<terminal x="-260" orientation="n" y="-50"/>
<terminal x="60" orientation="s" y="60"/>
<terminal x="-180" orientation="n" y="-50"/>
<terminal x="-100" orientation="n" y="-50"/>
<terminal x="0" orientation="n" y="-50"/>
<terminal x="-40" orientation="s" y="60"/>
<terminal x="60" orientation="n" y="-50"/>
<terminal x="240" orientation="n" y="-50"/>
<terminal x="-80" orientation="n" y="-50"/>
<terminal x="220" orientation="n" y="-50"/>
<terminal x="-140" orientation="n" y="-50"/>
<terminal x="260" orientation="n" y="-50"/>
<terminal x="120" orientation="n" y="-50"/>
<terminal x="80" orientation="n" y="-50"/>
<terminal x="40" orientation="n" y="-50"/>
<terminal x="-140" orientation="s" y="60"/>
<terminal x="200" orientation="n" y="-50"/>
<terminal x="-20" orientation="s" y="60"/>
<terminal x="160" orientation="n" y="-50"/>
<terminal x="-200" orientation="n" y="-50"/>
<terminal x="-220" orientation="s" y="60"/>
<terminal x="-120" orientation="s" y="60"/>
<terminal x="-100" orientation="s" y="60"/>
<terminal x="180" orientation="n" y="-50"/>
<terminal x="-180" orientation="s" y="60"/>
<terminal x="-160" orientation="n" y="-50"/>
<terminal x="40" orientation="s" y="60"/>
<terminal x="20" orientation="n" y="-50"/>
<terminal x="-40" orientation="n" y="-50"/>
<terminal x="-20" orientation="n" y="-50"/>
<terminal x="0" orientation="s" y="60"/>
<terminal x="-120" orientation="n" y="-50"/>
<terminal x="140" orientation="n" y="-50"/>
<terminal x="-60" orientation="n" y="-50"/>
<terminal x="-80" orientation="s" y="60"/>
<terminal x="100" orientation="n" y="-50"/>
<terminal x="110" orientation="s" y="60"/>
<terminal x="-220" orientation="n" y="-50"/>
<terminal x="-240" orientation="s" y="60"/>
</description>
</definition>
@@ -0,0 +1,93 @@
<definition hotspot_y="56" version="0.80" orientation="dyyy" hotspot_x="155" width="300" height="100" link_type="simple" type="element">
<uuid uuid="{ca6b413e-4b67-4c3a-a15b-ef30452e4770}"/>
<names>
<name lang="en">LENZE SERVO MOTOR WITH FAN</name>
</names>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-40" rotation="0" text="Fan" y="-2"/>
<arc x="-13" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-113" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="52" rotation="0" text="E" y="20"/>
<arc x="7" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="27" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="84" rotation="0" text="interface" y="-5"/>
<arc x="-13" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-93" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<rect x="47" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="17" height="6" y="-23" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="25" rotation="0" text="PE" y="-29"/>
<arc x="7" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="90" rotation="0" text="Drive" y="-13"/>
<arc x="27" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<circle x="-25" diameter="30" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-20" antialias="true"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="6" rotation="0" text="N" y="-29"/>
<arc x="-73" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-133" rotation="0" text="U" y="-29"/>
<rect x="9.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<arc x="-113" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-27.5" angle="-80" start="20" style="line-style:normal;line-weight:normal;filling:none;color:black" width="35" height="35" y="-22.5" antialias="true"/>
<rect x="-10.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<text color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="49" rotation="0" text="θ" y="-9"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-75" rotation="0" text="PE" y="-29"/>
<rect x="29.015" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="30" end2="none" x1="30" antialias="false"/>
<dynamic_text z="28" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="101" rotation="0" uuid="{5b146f38-9c8c-410e-827c-456cac6fe424}" text_from="ElementInfo" Halignment="AlignLeft" text_width="-1" y="17" frame="true">
<text/>
<info_name>label</info_name>
</dynamic_text>
<arc x="-93" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-73" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="10" end2="none" x1="10" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-13" rotation="0" text="L" y="-29"/>
<circle x="-125" diameter="30" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-20" antialias="true"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-10" end2="none" x1="-10" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-94" rotation="0" text="W" y="-29"/>
<rect x="-90.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-15" rotation="0" text="M" y="-7"/>
<text color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-17" rotation="0" text="1 ~" y="4"/>
<arc x="-127.5" angle="-80" start="20" style="line-style:normal;line-weight:normal;filling:none;color:black" width="35" height="35" y="-22.5" antialias="true"/>
<rect x="-110.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<rect x="-70.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.198" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-70" end2="none" x1="-70" antialias="false"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-90" end2="none" x1="-90" antialias="false"/>
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" x="-113" rotation="0" text="V" y="-29"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-110" end2="none" x1="-110" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-27" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-10" end2="none" x1="-10" antialias="false"/>
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-115" rotation="0" text="M" y="-7"/>
<polygon y5="-14" y4="-14" y2="-20" y1="-27" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="10" x4="2" x3="2" x5="2" closed="false" y3="-14" x1="10" antialias="false"/>
<text color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-116" rotation="0" text="3 ~" y="1"/>
<polygon y5="-27" y4="-27" y2="4" y1="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="30" x4="30" x3="30" x5="30" closed="false" y3="-27" x1="5" antialias="false"/>
<arc x="97" angle="-180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-43" antialias="true"/>
<rect x="99" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-46" antialias="false"/>
<arc x="-133" angle="-84" start="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<arc x="-133" angle="-84" start="83" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" height="6" y="-46" antialias="true"/>
<rect x="-130.985" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="2" height="6" y="-43.1982" antialias="false"/>
<text color="#000000" font="Sans Serif,8,-1,5,50,0,0,0,0,0" x="-137" rotation="0" text="LENZE SERVO MOTOR" y="33"/>
<line end1="none" length2="1.5" y2="-50" y1="-46" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-130" end2="none" x1="-130" antialias="false"/>
<rect x="-114" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" height="2" y="3" antialias="false"/>
<rect x="-114" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:black;color:black" width="4" height="2" y="3" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-27" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-110" end2="none" x1="-110" antialias="false"/>
<polygon y5="-14" y4="-14" y2="-20" y1="-27" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-130" x4="-122" x3="-122" x5="-122" closed="false" y3="-14" x1="-130" antialias="false"/>
<polygon y5="-14" y4="-14" y2="-20" y1="-27" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-90" x4="-98" x3="-98" x5="-98" closed="false" y3="-14" x1="-90" antialias="false"/>
<polygon y5="-27" y4="-27" y2="4" y1="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-70" x4="-70" x3="-70" x5="-70" closed="false" y3="-27" x1="-95" antialias="false"/>
<rect x="78" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="44" height="26" y="-25" antialias="false"/>
<polygon x6="103" y5="-40" y4="40" y2="-40" y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-150" x4="140" x3="-150" x5="140" closed="false" y3="40" y6="-40" x1="97" antialias="false"/>
<line end1="none" length2="1.5" y2="-37" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="100" end2="none" x1="100" antialias="false"/>
<circle x="45" diameter="22" style="line-style:normal;line-weight:normal;filling:none;color:black" y="5" antialias="false"/>
<polygon y2="16" y1="10" style="line-style:dotted;line-weight:normal;filling:none;color:black" x2="-110" x3="45" closed="false" y3="16" x1="-110" antialias="false"/>
<polygon y4="-14" y2="-26" y1="-26" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="52" x4="62" x3="59" closed="false" y3="-14" x1="49" antialias="false"/>
<line end1="none" length2="1.5" y2="-20" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="78" end2="none" x1="64" antialias="false"/>
<polygon y4="-4" y2="-20" y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" x4="78" x3="40" closed="false" y3="-4" x1="47" antialias="false"/>
<polygon y2="16" y1="16" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="100" x3="100" closed="false" y3="1" x1="67" antialias="false"/>
<terminal x="10" orientation="n" y="-50"/>
<terminal x="30" orientation="n" y="-50"/>
<terminal x="-10" orientation="n" y="-50"/>
<terminal x="-90" orientation="n" y="-50"/>
<terminal x="100" orientation="n" y="-50"/>
<terminal x="-110" orientation="n" y="-50"/>
<terminal x="-130" orientation="n" y="-50"/>
<terminal x="-70" orientation="n" y="-50"/>
</description>
</definition>
@@ -0,0 +1,119 @@
<definition version="0.70" type="element" hotspot_x="30" hotspot_y="48" height="110" link_type="simple" width="60" orientation="dyyy">
<uuid uuid="{a28cb44a-739b-4cb5-bd0c-d529614e6955}"/>
<names>
<name lang="de">1-Wire Extension</name>
<name lang="en">1-Wire Extension</name>
</names>
<elementInformations>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="description" show="1">1-Wire Extension</elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1">Loxone</elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
<elementInformation name="designation" show="1"></elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="plant" show="1"></elementInformation>
</elementInformations>
<informations>&#xd;
Author: DXF converter&#xd;
License:see http://qelectrotech.org/wiki/doc/elements_license&#xd;
Converter version:V3.0 DB&#xd;
&#xd;
</informations>
<description>
<polygon y1="-40.4" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-40.4" x1="-9" closed="false"/>
<polygon y1="48" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="48" x1="-14" closed="false"/>
<polygon y1="-40.4" antialias="false" x2="9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-40.4" x1="26" closed="false"/>
<polygon y1="48" antialias="false" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="48" x1="26" closed="false"/>
<polygon y1="48" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="48" x1="6" closed="false"/>
<text text="GND" y="-22" rotation="270" x="1.3" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="5V" y="-22" rotation="270" x="7.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<polygon y1="32.509" antialias="false" x2="-6.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="-4.16" closed="false"/>
<text text="Loxone&#xa;Link" y="26.2" rotation="0" x="7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<polygon y1="33.589" antialias="false" x2="-4.16" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="-2.3" closed="false"/>
<polygon y1="32.509" antialias="false" x2="-7.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="-6.97" closed="false"/>
<polygon y1="32.509" antialias="false" x2="-8.84" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="-11.54" closed="false"/>
<polygon y1="33.589" antialias="false" x2="-11.54" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="-13.51" closed="false"/>
<polygon y1="32.509" antialias="false" x2="-7.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="-6.97" closed="false"/>
<polygon y1="32.509" antialias="false" x2="-7.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="-8.84" closed="false"/>
<text text="LOX+" y="43.3" rotation="270" x="10" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="LOX-" y="43.3" rotation="270" x="16" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="GND" y="43.3" rotation="270" x="-3.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<polygon y1="56.8" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="18" closed="false"/>
<polygon y1="44.2" antialias="false" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="6" closed="false"/>
<polygon y1="44.2" antialias="false" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="18" closed="false"/>
<polygon y1="44.2" antialias="false" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="12" closed="false"/>
<polygon y1="56.8" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="-2" closed="false"/>
<polygon y1="56.8" antialias="false" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="6" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="-3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="3" closed="false"/>
<polygon y1="56.8" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="-2" closed="false"/>
<polygon y1="44.2" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="-2" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="3" closed="false"/>
<polygon y1="-44" antialias="false" x2="3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="3" closed="false"/>
<polygon y1="44.2" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="-8" closed="false"/>
<polygon y1="56.8" antialias="false" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="12" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="9" closed="false"/>
<polygon y1="44.2" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="12" closed="false"/>
<polygon y1="-44" antialias="false" x2="3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="-3" closed="false"/>
<polygon y1="56.8" antialias="false" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="-14" closed="false"/>
<polygon y1="56.8" antialias="false" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="-8" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="-9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="-9" closed="false"/>
<polygon y1="44.2" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="6" closed="false"/>
<polygon y1="-44" antialias="false" x2="9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="9" closed="false"/>
<polygon y1="44.2" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="-8" closed="false"/>
<polygon y1="-44" antialias="false" x2="9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="3" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="-9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="-3" closed="false"/>
<polygon y1="44.2" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="-14" closed="false"/>
<polygon y1="-44" antialias="false" x2="-3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="-3" closed="false"/>
<polygon y1="-44" antialias="false" x2="-3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="-9" closed="false"/>
<polygon y1="2.665" antialias="false" x2="-7.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="4.762" x1="-7.25" closed="false"/>
<polygon y1="2.665" antialias="false" x2="-7.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="2.665" x1="4.63" closed="false"/>
<polygon y1="4.762" antialias="false" x2="4.63" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="2.665" x1="4.63" closed="false"/>
<polygon y1="4.762" antialias="false" x2="4.63" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="4.762" x1="-7.25" closed="false"/>
<polygon y1="2.665" antialias="false" x2="-21.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="4.762" x1="-21.58" closed="false"/>
<polygon y1="2.665" antialias="false" x2="-21.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="2.665" x1="-9.69" closed="false"/>
<polygon y1="4.762" antialias="false" x2="-9.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="2.665" x1="-9.69" closed="false"/>
<polygon y1="4.762" antialias="false" x2="-9.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="4.762" x1="-21.58" closed="false"/>
<polygon y1="17.2" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="17.2" x1="-26" closed="false"/>
<polygon y1="-10" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-10" x1="-26" closed="false"/>
<polygon y1="8.2" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="10" x1="-24" closed="false"/>
<polygon y1="-1.7" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-3.5" x1="-24" closed="false"/>
<polygon y1="-1.7" antialias="false" x2="-23.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="8.2" x1="-23.97" closed="false"/>
<polygon y1="-40.4" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-3.5" x1="-26" closed="false"/>
<polygon y1="10" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="47.8" x1="-26" closed="false"/>
<polygon y1="8.2" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="10" x1="24" closed="false"/>
<polygon y1="-1.7" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-3.5" x1="24" closed="false"/>
<polygon y1="-1.7" antialias="false" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="8.2" x1="24" closed="false"/>
<polygon y1="-40.4" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-3.5" x1="26" closed="false"/>
<polygon y1="10" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="48" x1="26" closed="false"/>
<polygon y1="32.509" antialias="false" x2="12.82" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="15.63" closed="false"/>
<polygon y1="33.589" antialias="false" x2="15.63" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="17.49" closed="false"/>
<polygon y1="32.509" antialias="false" x2="11.89" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="12.82" closed="false"/>
<polygon y1="32.509" antialias="false" x2="10.95" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="8.25" closed="false"/>
<polygon y1="33.589" antialias="false" x2="8.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="6.28" closed="false"/>
<polygon y1="32.509" antialias="false" x2="11.89" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="12.82" closed="false"/>
<polygon y1="32.509" antialias="false" x2="11.89" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="10.95" closed="false"/>
<text text="24V+" y="43.3" rotation="270" x="-10" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="Power" y="28.9" rotation="0" x="-12" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="Loxone" y="-0.8" rotation="0" x="-19" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text text="1-Wire" y="13.3" rotation="0" x="-8" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text text="DATA" y="-22" rotation="270" x="-5" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<dynamic_text z="201" uuid="{54b619d5-111f-4cb0-a758-b177501d33d1}" Valignment="AlignTop" y="-37.7" rotation="0" text_width="-1" x="-43" Halignment="AlignRight" text_from="ElementInfo" frame="false" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal">
<text></text>
<info_name>formula</info_name>
</dynamic_text>
<dynamic_text z="287" uuid="{1c2198c8-05e6-4b4c-a7a4-e0fe74799646}" Valignment="AlignTop" y="-45.8" rotation="270" text_width="-1" x="-10" Halignment="AlignLeft" text_from="ElementInfo" frame="false" font="Sans Serif,3,-1,5,0,0,0,0,0,0,normal">
<text></text>
</dynamic_text>
<terminal y="49.6" x="-11" orientation="s"/>
<terminal y="49.6" x="9" orientation="s"/>
<terminal y="-37" x="6" orientation="n"/>
<terminal y="49.6" x="15" orientation="s"/>
<terminal y="49.6" x="-5" orientation="s"/>
<terminal y="-37" x="-6" orientation="n"/>
<terminal y="-37" x="0" orientation="n"/>
</description>
</definition>
@@ -0,0 +1,119 @@
<definition version="0.70" type="element" hotspot_x="30" hotspot_y="48" height="110" link_type="simple" width="60" orientation="dyyy">
<uuid uuid="{acd756a8-e539-4bb1-92cc-fb5882bb2009}"/>
<names>
<name lang="de">DMX Extension</name>
<name lang="en">DMX Extension</name>
</names>
<elementInformations>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="description" show="1">DMX Extension</elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1">Loxone</elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
<elementInformation name="designation" show="1"></elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="plant" show="1"></elementInformation>
</elementInformations>
<informations>&#xd;
Author: DXF converter&#xd;
License:see http://qelectrotech.org/wiki/doc/elements_license&#xd;
Converter version:V3.0 DB&#xd;
&#xd;
</informations>
<description>
<polygon y1="-40.4" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-40.4" x1="-9" closed="false"/>
<polygon y1="48" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="48" x1="-14" closed="false"/>
<polygon y1="-40.4" antialias="false" x2="9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-40.4" x1="26" closed="false"/>
<polygon y1="48" antialias="false" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="48" x1="26" closed="false"/>
<polygon y1="48" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="48" x1="6" closed="false"/>
<text text="GND" y="-22" rotation="270" x="1.3" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="DMX+" y="-22" rotation="270" x="7.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<polygon y1="32.509" antialias="false" x2="-6.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="-4.16" closed="false"/>
<text text="Loxone&#xa;Link" y="26.2" rotation="0" x="7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<polygon y1="33.589" antialias="false" x2="-4.16" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="-2.3" closed="false"/>
<polygon y1="32.509" antialias="false" x2="-7.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="-6.97" closed="false"/>
<polygon y1="32.509" antialias="false" x2="-8.84" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="-11.54" closed="false"/>
<polygon y1="33.589" antialias="false" x2="-11.54" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="-13.51" closed="false"/>
<polygon y1="32.509" antialias="false" x2="-7.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="-6.97" closed="false"/>
<polygon y1="32.509" antialias="false" x2="-7.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="-8.84" closed="false"/>
<text text="LOX+" y="43.3" rotation="270" x="10" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="LOX-" y="43.3" rotation="270" x="16" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="GND" y="43.3" rotation="270" x="-3.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<polygon y1="56.8" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="18" closed="false"/>
<polygon y1="44.2" antialias="false" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="6" closed="false"/>
<polygon y1="44.2" antialias="false" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="18" closed="false"/>
<polygon y1="44.2" antialias="false" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="12" closed="false"/>
<polygon y1="56.8" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="-2" closed="false"/>
<polygon y1="56.8" antialias="false" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="6" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="-3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="3" closed="false"/>
<polygon y1="56.8" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="-2" closed="false"/>
<polygon y1="44.2" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="-2" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="3" closed="false"/>
<polygon y1="-44" antialias="false" x2="3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="3" closed="false"/>
<polygon y1="44.2" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="-8" closed="false"/>
<polygon y1="56.8" antialias="false" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="12" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="9" closed="false"/>
<polygon y1="44.2" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="12" closed="false"/>
<polygon y1="-44" antialias="false" x2="3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="-3" closed="false"/>
<polygon y1="56.8" antialias="false" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="-14" closed="false"/>
<polygon y1="56.8" antialias="false" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="-8" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="-9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="-9" closed="false"/>
<polygon y1="44.2" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="6" closed="false"/>
<polygon y1="-44" antialias="false" x2="9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="9" closed="false"/>
<polygon y1="44.2" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="-8" closed="false"/>
<polygon y1="-44" antialias="false" x2="9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="3" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="-9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="-3" closed="false"/>
<polygon y1="44.2" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="-14" closed="false"/>
<polygon y1="-44" antialias="false" x2="-3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="-3" closed="false"/>
<polygon y1="-44" antialias="false" x2="-3" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="-9" closed="false"/>
<polygon y1="2.665" antialias="false" x2="-7.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="4.762" x1="-7.25" closed="false"/>
<polygon y1="2.665" antialias="false" x2="-7.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="2.665" x1="4.63" closed="false"/>
<polygon y1="4.762" antialias="false" x2="4.63" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="2.665" x1="4.63" closed="false"/>
<polygon y1="4.762" antialias="false" x2="4.63" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="4.762" x1="-7.25" closed="false"/>
<polygon y1="2.665" antialias="false" x2="-21.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="4.762" x1="-21.58" closed="false"/>
<polygon y1="2.665" antialias="false" x2="-21.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="2.665" x1="-9.69" closed="false"/>
<polygon y1="4.762" antialias="false" x2="-9.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="2.665" x1="-9.69" closed="false"/>
<polygon y1="4.762" antialias="false" x2="-9.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="4.762" x1="-21.58" closed="false"/>
<polygon y1="17.2" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="17.2" x1="-26" closed="false"/>
<polygon y1="-10" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-10" x1="-26" closed="false"/>
<polygon y1="8.2" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="10" x1="-24" closed="false"/>
<polygon y1="-1.7" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-3.5" x1="-24" closed="false"/>
<polygon y1="-1.7" antialias="false" x2="-23.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="8.2" x1="-23.97" closed="false"/>
<polygon y1="-40.4" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-3.5" x1="-26" closed="false"/>
<polygon y1="10" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="47.8" x1="-26" closed="false"/>
<polygon y1="8.2" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="10" x1="24" closed="false"/>
<polygon y1="-1.7" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-3.5" x1="24" closed="false"/>
<polygon y1="-1.7" antialias="false" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="8.2" x1="24" closed="false"/>
<polygon y1="-40.4" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-3.5" x1="26" closed="false"/>
<polygon y1="10" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="48" x1="26" closed="false"/>
<polygon y1="32.509" antialias="false" x2="12.82" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="15.63" closed="false"/>
<polygon y1="33.589" antialias="false" x2="15.63" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="17.49" closed="false"/>
<polygon y1="32.509" antialias="false" x2="11.89" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="12.82" closed="false"/>
<polygon y1="32.509" antialias="false" x2="10.95" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="8.25" closed="false"/>
<polygon y1="33.589" antialias="false" x2="8.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="6.28" closed="false"/>
<polygon y1="32.509" antialias="false" x2="11.89" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="12.82" closed="false"/>
<polygon y1="32.509" antialias="false" x2="11.89" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="10.95" closed="false"/>
<text text="24V+" y="43.3" rotation="270" x="-10" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="Power" y="28.9" rotation="0" x="-12" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="Loxone" y="-0.8" rotation="0" x="-19" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text text="DMX" y="13.3" rotation="0" x="-8" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text text="DMX-" y="-22" rotation="270" x="-5" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<dynamic_text z="201" uuid="{54b619d5-111f-4cb0-a758-b177501d33d1}" Valignment="AlignTop" y="-37.7" rotation="0" text_width="-1" x="-43" Halignment="AlignRight" text_from="ElementInfo" frame="false" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal">
<text></text>
<info_name>formula</info_name>
</dynamic_text>
<dynamic_text z="287" uuid="{1c2198c8-05e6-4b4c-a7a4-e0fe74799646}" Valignment="AlignTop" y="-45.8" rotation="270" text_width="-1" x="-10" Halignment="AlignLeft" text_from="ElementInfo" frame="false" font="Sans Serif,3,-1,5,0,0,0,0,0,0,normal">
<text></text>
</dynamic_text>
<terminal y="49.6" x="-11" orientation="s"/>
<terminal y="49.6" x="9" orientation="s"/>
<terminal y="-37" x="6" orientation="n"/>
<terminal y="49.6" x="15" orientation="s"/>
<terminal y="49.6" x="-5" orientation="s"/>
<terminal y="-37" x="-6" orientation="n"/>
<terminal y="-37" x="0" orientation="n"/>
</description>
</definition>
@@ -0,0 +1,854 @@
<definition version="0.70" width="70" hotspot_x="30" link_type="simple" hotspot_y="15" height="50" type="element" orientation="dyyy">
<uuid uuid="{42071200-0c2b-4764-a2a1-d769b3e92240}"/>
<names>
<name lang="fr">dimmer 100029</name>
<name lang="en">dimmer 100029</name>
</names>
<elementInformations/>
<informations>
Author: DXF converter
License:see http://qelectrotech.org/wiki/doc/elements_license
Converter version:V3.0 DB
</informations>
<description>
<dynamic_text font="Sans Serif,2,-1,5,25,0,0,0,0,0" z="1" x="-24" y="20" rotation="90" text_width="-1" uuid="{64fcc197-492e-45dc-a0af-c6d3e642cc6b}" frame="false" text_from="ElementInfo" Halignment="AlignLeft" Valignment="AlignTop">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line y2="4.71" x2="9.31" length2="1.5" x1="9.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.7"/>
<line y2="4.73" x2="9.26" length2="1.5" x1="9.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.71"/>
<line y2="4.75" x2="9.2" length2="1.5" x1="9.26" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.78" x2="9.16" length2="1.5" x1="9.2" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.75"/>
<line y2="4.81" x2="9.11" length2="1.5" x1="9.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.85" x2="9.07" length2="1.5" x1="9.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.81"/>
<line y2="4.88" x2="9.02" length2="1.5" x1="9.07" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.85"/>
<line y2="4.93" x2="9" length2="1.5" x1="9.02" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.88"/>
<line y2="4.98" x2="8.96" length2="1.5" x1="9" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.93"/>
<line y2="5.02" x2="8.93" length2="1.5" x1="8.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.98"/>
<line y2="5.07" x2="8.91" length2="1.5" x1="8.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.02"/>
<line y2="5.13" x2="8.89" length2="1.5" x1="8.91" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="5.18" x2="8.88" length2="1.5" x1="8.89" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.13"/>
<line y2="5.23" x2="8.87" length2="1.5" x1="8.88" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.18"/>
<line y2="5.29" x2="8.87" length2="1.5" x1="8.87" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.23"/>
<line y2="5.35" x2="8.87" length2="1.5" x1="8.87" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.29"/>
<line y2="5.4" x2="8.88" length2="1.5" x1="8.87" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.35"/>
<line y2="5.45" x2="8.89" length2="1.5" x1="8.88" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.4"/>
<line y2="5.5" x2="8.91" length2="1.5" x1="8.89" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.45"/>
<line y2="5.55" x2="8.93" length2="1.5" x1="8.91" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.5"/>
<line y2="5.61" x2="8.96" length2="1.5" x1="8.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.65" x2="9" length2="1.5" x1="8.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.61"/>
<line y2="5.69" x2="9.02" length2="1.5" x1="9" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.65"/>
<line y2="5.73" x2="9.07" length2="1.5" x1="9.02" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.76" x2="9.11" length2="1.5" x1="9.07" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.8" x2="9.16" length2="1.5" x1="9.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.83" x2="9.2" length2="1.5" x1="9.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.8"/>
<line y2="5.85" x2="9.26" length2="1.5" x1="9.2" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.83"/>
<line y2="5.87" x2="9.31" length2="1.5" x1="9.26" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.85"/>
<line y2="5.89" x2="9.36" length2="1.5" x1="9.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.87"/>
<line y2="4.39" x2="9.3" length2="1.5" x1="9.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.4" x2="9.24" length2="1.5" x1="9.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.42" x2="9.18" length2="1.5" x1="9.24" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.4"/>
<line y2="4.45" x2="9.12" length2="1.5" x1="9.18" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.42"/>
<line y2="4.47" x2="9.06" length2="1.5" x1="9.12" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.45"/>
<line y2="4.51" x2="9.01" length2="1.5" x1="9.06" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.47"/>
<line y2="4.54" x2="8.96" length2="1.5" x1="9.01" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.51"/>
<line y2="4.58" x2="8.91" length2="1.5" x1="8.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.54"/>
<line y2="4.62" x2="8.86" length2="1.5" x1="8.91" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.58"/>
<line y2="4.67" x2="8.83" length2="1.5" x1="8.86" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.62"/>
<line y2="4.73" x2="8.79" length2="1.5" x1="8.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.67"/>
<line y2="4.78" x2="8.75" length2="1.5" x1="8.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.83" x2="8.73" length2="1.5" x1="8.75" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.89" x2="8.7" length2="1.5" x1="8.73" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.83"/>
<line y2="4.95" x2="8.68" length2="1.5" x1="8.7" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.89"/>
<line y2="5.01" x2="8.67" length2="1.5" x1="8.68" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.95"/>
<line y2="5.07" x2="8.67" length2="1.5" x1="8.67" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.01"/>
<line y2="5.14" x2="8.67" length2="1.5" x1="8.67" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="5.2" x2="8.67" length2="1.5" x1="8.67" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.14"/>
<line y2="5.26" x2="8.67" length2="1.5" x1="8.67" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.2"/>
<line y2="5.32" x2="8.68" length2="1.5" x1="8.67" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.26"/>
<line y2="5.38" x2="8.7" length2="1.5" x1="8.68" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.32"/>
<line y2="5.43" x2="8.73" length2="1.5" x1="8.7" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.38"/>
<line y2="5.49" x2="8.75" length2="1.5" x1="8.73" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.43"/>
<line y2="5.55" x2="8.79" length2="1.5" x1="8.75" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.49"/>
<line y2="5.59" x2="8.83" length2="1.5" x1="8.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.64" x2="8.86" length2="1.5" x1="8.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.59"/>
<line y2="5.69" x2="8.91" length2="1.5" x1="8.86" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.64"/>
<line y2="5.73" x2="8.96" length2="1.5" x1="8.91" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.76" x2="9.01" length2="1.5" x1="8.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.79" x2="9.06" length2="1.5" x1="9.01" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.82" x2="9.12" length2="1.5" x1="9.06" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.79"/>
<line y2="5.84" x2="9.18" length2="1.5" x1="9.12" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.82"/>
<line y2="5.86" x2="9.24" length2="1.5" x1="9.18" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.84"/>
<line y2="5.88" x2="9.3" length2="1.5" x1="9.24" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.86"/>
<line y2="5.89" x2="9.36" length2="1.5" x1="9.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.88"/>
<line y2="4.71" x2="4.23" length2="1.5" x1="4.29" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.7"/>
<line y2="4.73" x2="4.18" length2="1.5" x1="4.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.71"/>
<line y2="4.75" x2="4.13" length2="1.5" x1="4.18" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.78" x2="4.08" length2="1.5" x1="4.13" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.75"/>
<line y2="4.81" x2="4.04" length2="1.5" x1="4.08" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.85" x2="3.99" length2="1.5" x1="4.04" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.81"/>
<line y2="4.88" x2="3.96" length2="1.5" x1="3.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.85"/>
<line y2="4.93" x2="3.92" length2="1.5" x1="3.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.88"/>
<line y2="4.98" x2="3.88" length2="1.5" x1="3.92" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.93"/>
<line y2="5.02" x2="3.86" length2="1.5" x1="3.88" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.98"/>
<line y2="5.07" x2="3.83" length2="1.5" x1="3.86" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.02"/>
<line y2="5.13" x2="3.82" length2="1.5" x1="3.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="5.18" x2="3.8" length2="1.5" x1="3.82" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.13"/>
<line y2="5.23" x2="3.79" length2="1.5" x1="3.8" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.18"/>
<line y2="5.29" x2="3.79" length2="1.5" x1="3.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.23"/>
<line y2="5.35" x2="3.79" length2="1.5" x1="3.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.29"/>
<line y2="5.4" x2="3.8" length2="1.5" x1="3.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.35"/>
<line y2="5.45" x2="3.82" length2="1.5" x1="3.8" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.4"/>
<line y2="5.5" x2="3.83" length2="1.5" x1="3.82" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.45"/>
<line y2="5.55" x2="3.86" length2="1.5" x1="3.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.5"/>
<line y2="5.61" x2="3.88" length2="1.5" x1="3.86" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.65" x2="3.92" length2="1.5" x1="3.88" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.61"/>
<line y2="5.69" x2="3.96" length2="1.5" x1="3.92" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.65"/>
<line y2="5.73" x2="3.99" length2="1.5" x1="3.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.76" x2="4.04" length2="1.5" x1="3.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.8" x2="4.08" length2="1.5" x1="4.04" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.83" x2="4.13" length2="1.5" x1="4.08" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.8"/>
<line y2="5.85" x2="4.18" length2="1.5" x1="4.13" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.83"/>
<line y2="5.87" x2="4.23" length2="1.5" x1="4.18" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.85"/>
<line y2="5.89" x2="4.29" length2="1.5" x1="4.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.87"/>
<line y2="4.39" x2="4.22" length2="1.5" x1="4.29" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.4" x2="4.16" length2="1.5" x1="4.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.42" x2="4.1" length2="1.5" x1="4.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.4"/>
<line y2="4.45" x2="4.04" length2="1.5" x1="4.1" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.42"/>
<line y2="4.47" x2="3.99" length2="1.5" x1="4.04" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.45"/>
<line y2="4.51" x2="3.93" length2="1.5" x1="3.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.47"/>
<line y2="4.54" x2="3.88" length2="1.5" x1="3.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.51"/>
<line y2="4.58" x2="3.83" length2="1.5" x1="3.88" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.54"/>
<line y2="4.62" x2="3.79" length2="1.5" x1="3.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.58"/>
<line y2="4.67" x2="3.75" length2="1.5" x1="3.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.62"/>
<line y2="4.73" x2="3.71" length2="1.5" x1="3.75" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.67"/>
<line y2="4.78" x2="3.68" length2="1.5" x1="3.71" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.83" x2="3.65" length2="1.5" x1="3.68" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.89" x2="3.62" length2="1.5" x1="3.65" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.83"/>
<line y2="4.95" x2="3.61" length2="1.5" x1="3.62" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.89"/>
<line y2="5.01" x2="3.6" length2="1.5" x1="3.61" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.95"/>
<line y2="5.07" x2="3.59" length2="1.5" x1="3.6" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.01"/>
<line y2="5.14" x2="3.59" length2="1.5" x1="3.59" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="5.2" x2="3.59" length2="1.5" x1="3.59" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.14"/>
<line y2="5.26" x2="3.6" length2="1.5" x1="3.59" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.2"/>
<line y2="5.32" x2="3.61" length2="1.5" x1="3.6" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.26"/>
<line y2="5.38" x2="3.62" length2="1.5" x1="3.61" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.32"/>
<line y2="5.43" x2="3.65" length2="1.5" x1="3.62" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.38"/>
<line y2="5.49" x2="3.68" length2="1.5" x1="3.65" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.43"/>
<line y2="5.55" x2="3.71" length2="1.5" x1="3.68" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.49"/>
<line y2="5.59" x2="3.75" length2="1.5" x1="3.71" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.64" x2="3.79" length2="1.5" x1="3.75" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.59"/>
<line y2="5.69" x2="3.83" length2="1.5" x1="3.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.64"/>
<line y2="5.73" x2="3.88" length2="1.5" x1="3.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.76" x2="3.93" length2="1.5" x1="3.88" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.79" x2="3.99" length2="1.5" x1="3.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.82" x2="4.04" length2="1.5" x1="3.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.79"/>
<line y2="5.84" x2="4.1" length2="1.5" x1="4.04" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.82"/>
<line y2="5.86" x2="4.16" length2="1.5" x1="4.1" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.84"/>
<line y2="5.88" x2="4.22" length2="1.5" x1="4.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.86"/>
<line y2="5.89" x2="4.29" length2="1.5" x1="4.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.88"/>
<line y2="4.71" x2="-0.84" length2="1.5" x1="-0.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.7"/>
<line y2="4.73" x2="-0.9" length2="1.5" x1="-0.84" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.71"/>
<line y2="4.75" x2="-0.94" length2="1.5" x1="-0.9" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.78" x2="-1" length2="1.5" x1="-0.94" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.75"/>
<line y2="4.81" x2="-1.04" length2="1.5" x1="-1" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.85" x2="-1.09" length2="1.5" x1="-1.04" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.81"/>
<line y2="4.88" x2="-1.12" length2="1.5" x1="-1.09" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.85"/>
<line y2="4.93" x2="-1.16" length2="1.5" x1="-1.12" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.88"/>
<line y2="4.98" x2="-1.19" length2="1.5" x1="-1.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.93"/>
<line y2="5.02" x2="-1.22" length2="1.5" x1="-1.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.98"/>
<line y2="5.07" x2="-1.24" length2="1.5" x1="-1.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.02"/>
<line y2="5.13" x2="-1.26" length2="1.5" x1="-1.24" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="5.18" x2="-1.27" length2="1.5" x1="-1.26" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.13"/>
<line y2="5.23" x2="-1.28" length2="1.5" x1="-1.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.18"/>
<line y2="5.29" x2="-1.28" length2="1.5" x1="-1.28" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.23"/>
<line y2="5.35" x2="-1.28" length2="1.5" x1="-1.28" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.29"/>
<line y2="5.4" x2="-1.27" length2="1.5" x1="-1.28" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.35"/>
<line y2="5.45" x2="-1.26" length2="1.5" x1="-1.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.4"/>
<line y2="5.5" x2="-1.24" length2="1.5" x1="-1.26" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.45"/>
<line y2="5.55" x2="-1.22" length2="1.5" x1="-1.24" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.5"/>
<line y2="5.61" x2="-1.19" length2="1.5" x1="-1.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.65" x2="-1.16" length2="1.5" x1="-1.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.61"/>
<line y2="5.69" x2="-1.12" length2="1.5" x1="-1.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.65"/>
<line y2="5.73" x2="-1.09" length2="1.5" x1="-1.12" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.76" x2="-1.04" length2="1.5" x1="-1.09" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.8" x2="-1" length2="1.5" x1="-1.04" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.83" x2="-0.94" length2="1.5" x1="-1" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.8"/>
<line y2="5.85" x2="-0.9" length2="1.5" x1="-0.94" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.83"/>
<line y2="5.87" x2="-0.84" length2="1.5" x1="-0.9" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.85"/>
<line y2="5.89" x2="-0.79" length2="1.5" x1="-0.84" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.87"/>
<line y2="4.39" x2="-0.85" length2="1.5" x1="-0.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.4" x2="-0.92" length2="1.5" x1="-0.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.42" x2="-0.97" length2="1.5" x1="-0.92" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.4"/>
<line y2="4.45" x2="-1.03" length2="1.5" x1="-0.97" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.42"/>
<line y2="4.47" x2="-1.09" length2="1.5" x1="-1.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.45"/>
<line y2="4.51" x2="-1.14" length2="1.5" x1="-1.09" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.47"/>
<line y2="4.54" x2="-1.19" length2="1.5" x1="-1.14" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.51"/>
<line y2="4.58" x2="-1.25" length2="1.5" x1="-1.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.54"/>
<line y2="4.62" x2="-1.29" length2="1.5" x1="-1.25" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.58"/>
<line y2="4.67" x2="-1.33" length2="1.5" x1="-1.29" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.62"/>
<line y2="4.73" x2="-1.36" length2="1.5" x1="-1.33" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.67"/>
<line y2="4.78" x2="-1.4" length2="1.5" x1="-1.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.83" x2="-1.43" length2="1.5" x1="-1.4" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.89" x2="-1.45" length2="1.5" x1="-1.43" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.83"/>
<line y2="4.95" x2="-1.47" length2="1.5" x1="-1.45" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.89"/>
<line y2="5.01" x2="-1.48" length2="1.5" x1="-1.47" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.95"/>
<line y2="5.07" x2="-1.49" length2="1.5" x1="-1.48" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.01"/>
<line y2="5.14" x2="-1.49" length2="1.5" x1="-1.49" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="5.2" x2="-1.49" length2="1.5" x1="-1.49" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.14"/>
<line y2="5.26" x2="-1.48" length2="1.5" x1="-1.49" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.2"/>
<line y2="5.32" x2="-1.47" length2="1.5" x1="-1.48" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.26"/>
<line y2="5.38" x2="-1.45" length2="1.5" x1="-1.47" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.32"/>
<line y2="5.43" x2="-1.43" length2="1.5" x1="-1.45" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.38"/>
<line y2="5.49" x2="-1.4" length2="1.5" x1="-1.43" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.43"/>
<line y2="5.55" x2="-1.36" length2="1.5" x1="-1.4" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.49"/>
<line y2="5.59" x2="-1.33" length2="1.5" x1="-1.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.64" x2="-1.29" length2="1.5" x1="-1.33" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.59"/>
<line y2="5.69" x2="-1.25" length2="1.5" x1="-1.29" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.64"/>
<line y2="5.73" x2="-1.19" length2="1.5" x1="-1.25" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.76" x2="-1.14" length2="1.5" x1="-1.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.79" x2="-1.09" length2="1.5" x1="-1.14" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.82" x2="-1.03" length2="1.5" x1="-1.09" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.79"/>
<line y2="5.84" x2="-0.97" length2="1.5" x1="-1.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.82"/>
<line y2="5.86" x2="-0.92" length2="1.5" x1="-0.97" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.84"/>
<line y2="5.88" x2="-0.85" length2="1.5" x1="-0.92" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.86"/>
<line y2="5.89" x2="-0.79" length2="1.5" x1="-0.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.88"/>
<line y2="4.71" x2="-5.92" length2="1.5" x1="-5.87" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.7"/>
<line y2="4.73" x2="-5.97" length2="1.5" x1="-5.92" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.71"/>
<line y2="4.75" x2="-6.02" length2="1.5" x1="-5.97" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.78" x2="-6.07" length2="1.5" x1="-6.02" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.75"/>
<line y2="4.81" x2="-6.12" length2="1.5" x1="-6.07" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.85" x2="-6.16" length2="1.5" x1="-6.12" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.81"/>
<line y2="4.88" x2="-6.2" length2="1.5" x1="-6.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.85"/>
<line y2="4.93" x2="-6.23" length2="1.5" x1="-6.2" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.88"/>
<line y2="4.98" x2="-6.27" length2="1.5" x1="-6.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.93"/>
<line y2="5.02" x2="-6.3" length2="1.5" x1="-6.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.98"/>
<line y2="5.07" x2="-6.31" length2="1.5" x1="-6.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.02"/>
<line y2="5.13" x2="-6.33" length2="1.5" x1="-6.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="5.18" x2="-6.35" length2="1.5" x1="-6.33" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.13"/>
<line y2="5.23" x2="-6.36" length2="1.5" x1="-6.35" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.18"/>
<line y2="5.29" x2="-6.36" length2="1.5" x1="-6.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.23"/>
<line y2="5.35" x2="-6.36" length2="1.5" x1="-6.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.29"/>
<line y2="5.4" x2="-6.35" length2="1.5" x1="-6.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.35"/>
<line y2="5.45" x2="-6.33" length2="1.5" x1="-6.35" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.4"/>
<line y2="5.5" x2="-6.31" length2="1.5" x1="-6.33" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.45"/>
<line y2="5.55" x2="-6.3" length2="1.5" x1="-6.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.5"/>
<line y2="5.61" x2="-6.27" length2="1.5" x1="-6.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.65" x2="-6.23" length2="1.5" x1="-6.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.61"/>
<line y2="5.69" x2="-6.2" length2="1.5" x1="-6.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.65"/>
<line y2="5.73" x2="-6.16" length2="1.5" x1="-6.2" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.76" x2="-6.12" length2="1.5" x1="-6.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.8" x2="-6.07" length2="1.5" x1="-6.12" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.83" x2="-6.02" length2="1.5" x1="-6.07" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.8"/>
<line y2="5.85" x2="-5.97" length2="1.5" x1="-6.02" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.83"/>
<line y2="5.87" x2="-5.92" length2="1.5" x1="-5.97" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.85"/>
<line y2="5.89" x2="-5.87" length2="1.5" x1="-5.92" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.87"/>
<line y2="4.39" x2="-5.93" length2="1.5" x1="-5.87" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.4" x2="-5.99" length2="1.5" x1="-5.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.42" x2="-6.05" length2="1.5" x1="-5.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.4"/>
<line y2="4.45" x2="-6.11" length2="1.5" x1="-6.05" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.42"/>
<line y2="4.47" x2="-6.16" length2="1.5" x1="-6.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.45"/>
<line y2="4.51" x2="-6.22" length2="1.5" x1="-6.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.47"/>
<line y2="4.54" x2="-6.27" length2="1.5" x1="-6.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.51"/>
<line y2="4.58" x2="-6.32" length2="1.5" x1="-6.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.54"/>
<line y2="4.62" x2="-6.37" length2="1.5" x1="-6.32" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.58"/>
<line y2="4.67" x2="-6.4" length2="1.5" x1="-6.37" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.62"/>
<line y2="4.73" x2="-6.44" length2="1.5" x1="-6.4" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.67"/>
<line y2="4.78" x2="-6.48" length2="1.5" x1="-6.44" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.83" x2="-6.5" length2="1.5" x1="-6.48" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.89" x2="-6.52" length2="1.5" x1="-6.5" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.83"/>
<line y2="4.95" x2="-6.54" length2="1.5" x1="-6.52" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.89"/>
<line y2="5.01" x2="-6.56" length2="1.5" x1="-6.54" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.95"/>
<line y2="5.07" x2="-6.57" length2="1.5" x1="-6.56" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.01"/>
<line y2="5.14" x2="-6.57" length2="1.5" x1="-6.57" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="5.2" x2="-6.57" length2="1.5" x1="-6.57" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.14"/>
<line y2="5.26" x2="-6.56" length2="1.5" x1="-6.57" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.2"/>
<line y2="5.32" x2="-6.54" length2="1.5" x1="-6.56" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.26"/>
<line y2="5.38" x2="-6.52" length2="1.5" x1="-6.54" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.32"/>
<line y2="5.43" x2="-6.5" length2="1.5" x1="-6.52" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.38"/>
<line y2="5.49" x2="-6.48" length2="1.5" x1="-6.5" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.43"/>
<line y2="5.55" x2="-6.44" length2="1.5" x1="-6.48" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.49"/>
<line y2="5.59" x2="-6.4" length2="1.5" x1="-6.44" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.64" x2="-6.37" length2="1.5" x1="-6.4" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.59"/>
<line y2="5.69" x2="-6.32" length2="1.5" x1="-6.37" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.64"/>
<line y2="5.73" x2="-6.27" length2="1.5" x1="-6.32" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.76" x2="-6.22" length2="1.5" x1="-6.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.79" x2="-6.16" length2="1.5" x1="-6.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.82" x2="-6.11" length2="1.5" x1="-6.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.79"/>
<line y2="5.84" x2="-6.05" length2="1.5" x1="-6.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.82"/>
<line y2="5.86" x2="-5.99" length2="1.5" x1="-6.05" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.84"/>
<line y2="5.88" x2="-5.93" length2="1.5" x1="-5.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.86"/>
<line y2="5.89" x2="-5.87" length2="1.5" x1="-5.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.88"/>
<line y2="4.39" x2="9.3" length2="1.5" x1="9.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.4" x2="9.24" length2="1.5" x1="9.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.42" x2="9.18" length2="1.5" x1="9.24" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.4"/>
<line y2="4.45" x2="9.12" length2="1.5" x1="9.18" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.42"/>
<line y2="4.47" x2="9.06" length2="1.5" x1="9.12" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.45"/>
<line y2="4.51" x2="9.01" length2="1.5" x1="9.06" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.47"/>
<line y2="4.54" x2="8.96" length2="1.5" x1="9.01" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.51"/>
<line y2="4.58" x2="8.91" length2="1.5" x1="8.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.54"/>
<line y2="4.62" x2="8.86" length2="1.5" x1="8.91" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.58"/>
<line y2="4.67" x2="8.83" length2="1.5" x1="8.86" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.62"/>
<line y2="4.73" x2="8.79" length2="1.5" x1="8.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.67"/>
<line y2="4.78" x2="8.75" length2="1.5" x1="8.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.83" x2="8.73" length2="1.5" x1="8.75" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.89" x2="8.7" length2="1.5" x1="8.73" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.83"/>
<line y2="4.95" x2="8.68" length2="1.5" x1="8.7" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.89"/>
<line y2="5.01" x2="8.67" length2="1.5" x1="8.68" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.95"/>
<line y2="5.07" x2="8.67" length2="1.5" x1="8.67" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.01"/>
<line y2="5.14" x2="8.67" length2="1.5" x1="8.67" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="5.2" x2="8.67" length2="1.5" x1="8.67" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.14"/>
<line y2="5.26" x2="8.67" length2="1.5" x1="8.67" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.2"/>
<line y2="5.32" x2="8.68" length2="1.5" x1="8.67" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.26"/>
<line y2="5.38" x2="8.7" length2="1.5" x1="8.68" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.32"/>
<line y2="5.43" x2="8.73" length2="1.5" x1="8.7" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.38"/>
<line y2="5.49" x2="8.75" length2="1.5" x1="8.73" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.43"/>
<line y2="5.55" x2="8.79" length2="1.5" x1="8.75" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.49"/>
<line y2="5.59" x2="8.83" length2="1.5" x1="8.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.64" x2="8.86" length2="1.5" x1="8.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.59"/>
<line y2="5.69" x2="8.91" length2="1.5" x1="8.86" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.64"/>
<line y2="5.73" x2="8.96" length2="1.5" x1="8.91" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.76" x2="9.01" length2="1.5" x1="8.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.79" x2="9.06" length2="1.5" x1="9.01" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.82" x2="9.12" length2="1.5" x1="9.06" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.79"/>
<line y2="5.84" x2="9.18" length2="1.5" x1="9.12" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.82"/>
<line y2="5.86" x2="9.24" length2="1.5" x1="9.18" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.84"/>
<line y2="5.88" x2="9.3" length2="1.5" x1="9.24" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.86"/>
<line y2="5.89" x2="9.36" length2="1.5" x1="9.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.88"/>
<line y2="5.87" x2="9.31" length2="1.5" x1="9.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.89"/>
<line y2="5.85" x2="9.26" length2="1.5" x1="9.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.87"/>
<line y2="5.83" x2="9.2" length2="1.5" x1="9.26" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.85"/>
<line y2="5.8" x2="9.16" length2="1.5" x1="9.2" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.83"/>
<line y2="5.76" x2="9.11" length2="1.5" x1="9.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.8"/>
<line y2="5.73" x2="9.07" length2="1.5" x1="9.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.69" x2="9.02" length2="1.5" x1="9.07" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.65" x2="9" length2="1.5" x1="9.02" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.61" x2="8.96" length2="1.5" x1="9" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.65"/>
<line y2="5.55" x2="8.93" length2="1.5" x1="8.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.61"/>
<line y2="5.5" x2="8.91" length2="1.5" x1="8.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.45" x2="8.89" length2="1.5" x1="8.91" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.5"/>
<line y2="5.4" x2="8.88" length2="1.5" x1="8.89" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.45"/>
<line y2="5.35" x2="8.87" length2="1.5" x1="8.88" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.4"/>
<line y2="5.29" x2="8.87" length2="1.5" x1="8.87" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.35"/>
<line y2="5.23" x2="8.87" length2="1.5" x1="8.87" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.29"/>
<line y2="5.18" x2="8.88" length2="1.5" x1="8.87" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.23"/>
<line y2="5.13" x2="8.89" length2="1.5" x1="8.88" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.18"/>
<line y2="5.07" x2="8.91" length2="1.5" x1="8.89" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.13"/>
<line y2="5.02" x2="8.93" length2="1.5" x1="8.91" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="4.98" x2="8.96" length2="1.5" x1="8.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.02"/>
<line y2="4.93" x2="9" length2="1.5" x1="8.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.98"/>
<line y2="4.88" x2="9.02" length2="1.5" x1="9" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.93"/>
<line y2="4.85" x2="9.07" length2="1.5" x1="9.02" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.88"/>
<line y2="4.81" x2="9.11" length2="1.5" x1="9.07" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.85"/>
<line y2="4.78" x2="9.16" length2="1.5" x1="9.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.81"/>
<line y2="4.75" x2="9.2" length2="1.5" x1="9.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.73" x2="9.26" length2="1.5" x1="9.2" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.75"/>
<line y2="4.71" x2="9.31" length2="1.5" x1="9.26" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.7" x2="9.36" length2="1.5" x1="9.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.71"/>
<line y2="4.39" x2="4.22" length2="1.5" x1="4.29" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.4" x2="4.16" length2="1.5" x1="4.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.42" x2="4.1" length2="1.5" x1="4.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.4"/>
<line y2="4.45" x2="4.04" length2="1.5" x1="4.1" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.42"/>
<line y2="4.47" x2="3.99" length2="1.5" x1="4.04" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.45"/>
<line y2="4.51" x2="3.93" length2="1.5" x1="3.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.47"/>
<line y2="4.54" x2="3.88" length2="1.5" x1="3.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.51"/>
<line y2="4.58" x2="3.83" length2="1.5" x1="3.88" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.54"/>
<line y2="4.62" x2="3.79" length2="1.5" x1="3.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.58"/>
<line y2="4.67" x2="3.75" length2="1.5" x1="3.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.62"/>
<line y2="4.73" x2="3.71" length2="1.5" x1="3.75" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.67"/>
<line y2="4.78" x2="3.68" length2="1.5" x1="3.71" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.83" x2="3.65" length2="1.5" x1="3.68" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.89" x2="3.62" length2="1.5" x1="3.65" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.83"/>
<line y2="4.95" x2="3.61" length2="1.5" x1="3.62" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.89"/>
<line y2="5.01" x2="3.6" length2="1.5" x1="3.61" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.95"/>
<line y2="5.07" x2="3.59" length2="1.5" x1="3.6" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.01"/>
<line y2="5.14" x2="3.59" length2="1.5" x1="3.59" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="5.2" x2="3.59" length2="1.5" x1="3.59" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.14"/>
<line y2="5.26" x2="3.6" length2="1.5" x1="3.59" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.2"/>
<line y2="5.32" x2="3.61" length2="1.5" x1="3.6" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.26"/>
<line y2="5.38" x2="3.62" length2="1.5" x1="3.61" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.32"/>
<line y2="5.43" x2="3.65" length2="1.5" x1="3.62" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.38"/>
<line y2="5.49" x2="3.68" length2="1.5" x1="3.65" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.43"/>
<line y2="5.55" x2="3.71" length2="1.5" x1="3.68" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.49"/>
<line y2="5.59" x2="3.75" length2="1.5" x1="3.71" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.64" x2="3.79" length2="1.5" x1="3.75" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.59"/>
<line y2="5.69" x2="3.83" length2="1.5" x1="3.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.64"/>
<line y2="5.73" x2="3.88" length2="1.5" x1="3.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.76" x2="3.93" length2="1.5" x1="3.88" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.79" x2="3.99" length2="1.5" x1="3.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.82" x2="4.04" length2="1.5" x1="3.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.79"/>
<line y2="5.84" x2="4.1" length2="1.5" x1="4.04" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.82"/>
<line y2="5.86" x2="4.16" length2="1.5" x1="4.1" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.84"/>
<line y2="5.88" x2="4.22" length2="1.5" x1="4.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.86"/>
<line y2="5.89" x2="4.29" length2="1.5" x1="4.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.88"/>
<line y2="5.87" x2="4.23" length2="1.5" x1="4.29" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.89"/>
<line y2="5.85" x2="4.18" length2="1.5" x1="4.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.87"/>
<line y2="5.83" x2="4.13" length2="1.5" x1="4.18" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.85"/>
<line y2="5.8" x2="4.08" length2="1.5" x1="4.13" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.83"/>
<line y2="5.76" x2="4.04" length2="1.5" x1="4.08" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.8"/>
<line y2="5.73" x2="3.99" length2="1.5" x1="4.04" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.69" x2="3.96" length2="1.5" x1="3.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.65" x2="3.92" length2="1.5" x1="3.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.61" x2="3.88" length2="1.5" x1="3.92" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.65"/>
<line y2="5.55" x2="3.86" length2="1.5" x1="3.88" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.61"/>
<line y2="5.5" x2="3.83" length2="1.5" x1="3.86" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.45" x2="3.82" length2="1.5" x1="3.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.5"/>
<line y2="5.4" x2="3.8" length2="1.5" x1="3.82" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.45"/>
<line y2="5.35" x2="3.79" length2="1.5" x1="3.8" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.4"/>
<line y2="5.29" x2="3.79" length2="1.5" x1="3.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.35"/>
<line y2="5.23" x2="3.79" length2="1.5" x1="3.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.29"/>
<line y2="5.18" x2="3.8" length2="1.5" x1="3.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.23"/>
<line y2="5.13" x2="3.82" length2="1.5" x1="3.8" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.18"/>
<line y2="5.07" x2="3.83" length2="1.5" x1="3.82" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.13"/>
<line y2="5.02" x2="3.86" length2="1.5" x1="3.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="4.98" x2="3.88" length2="1.5" x1="3.86" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.02"/>
<line y2="4.93" x2="3.92" length2="1.5" x1="3.88" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.98"/>
<line y2="4.88" x2="3.96" length2="1.5" x1="3.92" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.93"/>
<line y2="4.85" x2="3.99" length2="1.5" x1="3.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.88"/>
<line y2="4.81" x2="4.04" length2="1.5" x1="3.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.85"/>
<line y2="4.78" x2="4.08" length2="1.5" x1="4.04" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.81"/>
<line y2="4.75" x2="4.13" length2="1.5" x1="4.08" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.73" x2="4.18" length2="1.5" x1="4.13" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.75"/>
<line y2="4.71" x2="4.23" length2="1.5" x1="4.18" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.7" x2="4.29" length2="1.5" x1="4.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.71"/>
<line y2="4.39" x2="-0.85" length2="1.5" x1="-0.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.4" x2="-0.92" length2="1.5" x1="-0.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.42" x2="-0.97" length2="1.5" x1="-0.92" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.4"/>
<line y2="4.45" x2="-1.03" length2="1.5" x1="-0.97" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.42"/>
<line y2="4.47" x2="-1.09" length2="1.5" x1="-1.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.45"/>
<line y2="4.51" x2="-1.14" length2="1.5" x1="-1.09" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.47"/>
<line y2="4.54" x2="-1.19" length2="1.5" x1="-1.14" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.51"/>
<line y2="4.58" x2="-1.25" length2="1.5" x1="-1.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.54"/>
<line y2="4.62" x2="-1.29" length2="1.5" x1="-1.25" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.58"/>
<line y2="4.67" x2="-1.33" length2="1.5" x1="-1.29" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.62"/>
<line y2="4.73" x2="-1.36" length2="1.5" x1="-1.33" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.67"/>
<line y2="4.78" x2="-1.4" length2="1.5" x1="-1.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.83" x2="-1.43" length2="1.5" x1="-1.4" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.89" x2="-1.45" length2="1.5" x1="-1.43" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.83"/>
<line y2="4.95" x2="-1.47" length2="1.5" x1="-1.45" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.89"/>
<line y2="5.01" x2="-1.48" length2="1.5" x1="-1.47" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.95"/>
<line y2="5.07" x2="-1.49" length2="1.5" x1="-1.48" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.01"/>
<line y2="5.14" x2="-1.49" length2="1.5" x1="-1.49" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="5.2" x2="-1.49" length2="1.5" x1="-1.49" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.14"/>
<line y2="5.26" x2="-1.48" length2="1.5" x1="-1.49" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.2"/>
<line y2="5.32" x2="-1.47" length2="1.5" x1="-1.48" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.26"/>
<line y2="5.38" x2="-1.45" length2="1.5" x1="-1.47" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.32"/>
<line y2="5.43" x2="-1.43" length2="1.5" x1="-1.45" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.38"/>
<line y2="5.49" x2="-1.4" length2="1.5" x1="-1.43" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.43"/>
<line y2="5.55" x2="-1.36" length2="1.5" x1="-1.4" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.49"/>
<line y2="5.59" x2="-1.33" length2="1.5" x1="-1.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.64" x2="-1.29" length2="1.5" x1="-1.33" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.59"/>
<line y2="5.69" x2="-1.25" length2="1.5" x1="-1.29" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.64"/>
<line y2="5.73" x2="-1.19" length2="1.5" x1="-1.25" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.76" x2="-1.14" length2="1.5" x1="-1.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.79" x2="-1.09" length2="1.5" x1="-1.14" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.82" x2="-1.03" length2="1.5" x1="-1.09" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.79"/>
<line y2="5.84" x2="-0.97" length2="1.5" x1="-1.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.82"/>
<line y2="5.86" x2="-0.92" length2="1.5" x1="-0.97" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.84"/>
<line y2="5.88" x2="-0.85" length2="1.5" x1="-0.92" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.86"/>
<line y2="5.89" x2="-0.79" length2="1.5" x1="-0.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.88"/>
<line y2="5.87" x2="-0.84" length2="1.5" x1="-0.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.89"/>
<line y2="5.85" x2="-0.9" length2="1.5" x1="-0.84" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.87"/>
<line y2="5.83" x2="-0.94" length2="1.5" x1="-0.9" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.85"/>
<line y2="5.8" x2="-1" length2="1.5" x1="-0.94" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.83"/>
<line y2="5.76" x2="-1.04" length2="1.5" x1="-1" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.8"/>
<line y2="5.73" x2="-1.09" length2="1.5" x1="-1.04" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.69" x2="-1.12" length2="1.5" x1="-1.09" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.65" x2="-1.16" length2="1.5" x1="-1.12" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.61" x2="-1.19" length2="1.5" x1="-1.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.65"/>
<line y2="5.55" x2="-1.22" length2="1.5" x1="-1.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.61"/>
<line y2="5.5" x2="-1.24" length2="1.5" x1="-1.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.45" x2="-1.26" length2="1.5" x1="-1.24" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.5"/>
<line y2="5.4" x2="-1.27" length2="1.5" x1="-1.26" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.45"/>
<line y2="5.35" x2="-1.28" length2="1.5" x1="-1.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.4"/>
<line y2="5.29" x2="-1.28" length2="1.5" x1="-1.28" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.35"/>
<line y2="5.23" x2="-1.28" length2="1.5" x1="-1.28" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.29"/>
<line y2="5.18" x2="-1.27" length2="1.5" x1="-1.28" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.23"/>
<line y2="5.13" x2="-1.26" length2="1.5" x1="-1.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.18"/>
<line y2="5.07" x2="-1.24" length2="1.5" x1="-1.26" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.13"/>
<line y2="5.02" x2="-1.22" length2="1.5" x1="-1.24" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="4.98" x2="-1.19" length2="1.5" x1="-1.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.02"/>
<line y2="4.93" x2="-1.16" length2="1.5" x1="-1.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.98"/>
<line y2="4.88" x2="-1.12" length2="1.5" x1="-1.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.93"/>
<line y2="4.85" x2="-1.09" length2="1.5" x1="-1.12" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.88"/>
<line y2="4.81" x2="-1.04" length2="1.5" x1="-1.09" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.85"/>
<line y2="4.78" x2="-1" length2="1.5" x1="-1.04" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.81"/>
<line y2="4.75" x2="-0.94" length2="1.5" x1="-1" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.73" x2="-0.9" length2="1.5" x1="-0.94" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.75"/>
<line y2="4.71" x2="-0.84" length2="1.5" x1="-0.9" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.7" x2="-0.79" length2="1.5" x1="-0.84" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.71"/>
<line y2="4.39" x2="-5.93" length2="1.5" x1="-5.87" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.4" x2="-5.99" length2="1.5" x1="-5.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.39"/>
<line y2="4.42" x2="-6.05" length2="1.5" x1="-5.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.4"/>
<line y2="4.45" x2="-6.11" length2="1.5" x1="-6.05" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.42"/>
<line y2="4.47" x2="-6.16" length2="1.5" x1="-6.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.45"/>
<line y2="4.51" x2="-6.22" length2="1.5" x1="-6.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.47"/>
<line y2="4.54" x2="-6.27" length2="1.5" x1="-6.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.51"/>
<line y2="4.58" x2="-6.32" length2="1.5" x1="-6.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.54"/>
<line y2="4.62" x2="-6.37" length2="1.5" x1="-6.32" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.58"/>
<line y2="4.67" x2="-6.4" length2="1.5" x1="-6.37" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.62"/>
<line y2="4.73" x2="-6.44" length2="1.5" x1="-6.4" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.67"/>
<line y2="4.78" x2="-6.48" length2="1.5" x1="-6.44" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.83" x2="-6.5" length2="1.5" x1="-6.48" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.89" x2="-6.52" length2="1.5" x1="-6.5" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.83"/>
<line y2="4.95" x2="-6.54" length2="1.5" x1="-6.52" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.89"/>
<line y2="5.01" x2="-6.56" length2="1.5" x1="-6.54" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.95"/>
<line y2="5.07" x2="-6.57" length2="1.5" x1="-6.56" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.01"/>
<line y2="5.14" x2="-6.57" length2="1.5" x1="-6.57" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="5.2" x2="-6.57" length2="1.5" x1="-6.57" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.14"/>
<line y2="5.26" x2="-6.56" length2="1.5" x1="-6.57" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.2"/>
<line y2="5.32" x2="-6.54" length2="1.5" x1="-6.56" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.26"/>
<line y2="5.38" x2="-6.52" length2="1.5" x1="-6.54" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.32"/>
<line y2="5.43" x2="-6.5" length2="1.5" x1="-6.52" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.38"/>
<line y2="5.49" x2="-6.48" length2="1.5" x1="-6.5" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.43"/>
<line y2="5.55" x2="-6.44" length2="1.5" x1="-6.48" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.49"/>
<line y2="5.59" x2="-6.4" length2="1.5" x1="-6.44" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.64" x2="-6.37" length2="1.5" x1="-6.4" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.59"/>
<line y2="5.69" x2="-6.32" length2="1.5" x1="-6.37" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.64"/>
<line y2="5.73" x2="-6.27" length2="1.5" x1="-6.32" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.76" x2="-6.22" length2="1.5" x1="-6.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.79" x2="-6.16" length2="1.5" x1="-6.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.82" x2="-6.11" length2="1.5" x1="-6.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.79"/>
<line y2="5.84" x2="-6.05" length2="1.5" x1="-6.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.82"/>
<line y2="5.86" x2="-5.99" length2="1.5" x1="-6.05" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.84"/>
<line y2="5.88" x2="-5.93" length2="1.5" x1="-5.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.86"/>
<line y2="5.89" x2="-5.87" length2="1.5" x1="-5.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.88"/>
<line y2="5.87" x2="-5.92" length2="1.5" x1="-5.87" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.89"/>
<line y2="5.85" x2="-5.97" length2="1.5" x1="-5.92" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.87"/>
<line y2="5.83" x2="-6.02" length2="1.5" x1="-5.97" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.85"/>
<line y2="5.8" x2="-6.07" length2="1.5" x1="-6.02" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.83"/>
<line y2="5.76" x2="-6.12" length2="1.5" x1="-6.07" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.8"/>
<line y2="5.73" x2="-6.16" length2="1.5" x1="-6.12" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.76"/>
<line y2="5.69" x2="-6.2" length2="1.5" x1="-6.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.73"/>
<line y2="5.65" x2="-6.23" length2="1.5" x1="-6.2" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.69"/>
<line y2="5.61" x2="-6.27" length2="1.5" x1="-6.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.65"/>
<line y2="5.55" x2="-6.3" length2="1.5" x1="-6.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.61"/>
<line y2="5.5" x2="-6.31" length2="1.5" x1="-6.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="5.45" x2="-6.33" length2="1.5" x1="-6.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.5"/>
<line y2="5.4" x2="-6.35" length2="1.5" x1="-6.33" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.45"/>
<line y2="5.35" x2="-6.36" length2="1.5" x1="-6.35" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.4"/>
<line y2="5.29" x2="-6.36" length2="1.5" x1="-6.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.35"/>
<line y2="5.23" x2="-6.36" length2="1.5" x1="-6.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.29"/>
<line y2="5.18" x2="-6.35" length2="1.5" x1="-6.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.23"/>
<line y2="5.13" x2="-6.33" length2="1.5" x1="-6.35" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.18"/>
<line y2="5.07" x2="-6.31" length2="1.5" x1="-6.33" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.13"/>
<line y2="5.02" x2="-6.3" length2="1.5" x1="-6.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.07"/>
<line y2="4.98" x2="-6.27" length2="1.5" x1="-6.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.02"/>
<line y2="4.93" x2="-6.23" length2="1.5" x1="-6.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.98"/>
<line y2="4.88" x2="-6.2" length2="1.5" x1="-6.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.93"/>
<line y2="4.85" x2="-6.16" length2="1.5" x1="-6.2" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.88"/>
<line y2="4.81" x2="-6.12" length2="1.5" x1="-6.16" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.85"/>
<line y2="4.78" x2="-6.07" length2="1.5" x1="-6.12" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.81"/>
<line y2="4.75" x2="-6.02" length2="1.5" x1="-6.07" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.78"/>
<line y2="4.73" x2="-5.97" length2="1.5" x1="-6.02" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.75"/>
<line y2="4.71" x2="-5.92" length2="1.5" x1="-5.97" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.73"/>
<line y2="4.7" x2="-5.87" length2="1.5" x1="-5.92" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.71"/>
<line y2="-13.39" x2="-5.38" length2="1.5" x1="-5.38" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="-5.38" length2="1.5" x1="-4.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="-4.11" length2="1.5" x1="-4.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="-4.11" length2="1.5" x1="-5.38" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="6.03" length2="1.5" x1="6.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="6.03" length2="1.5" x1="7.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="7.3" length2="1.5" x1="7.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="7.3" length2="1.5" x1="6.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="4.77" length2="1.5" x1="4.77" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="4.77" length2="1.5" x1="6.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="6.03" length2="1.5" x1="6.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="6.03" length2="1.5" x1="4.77" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="3.5" length2="1.5" x1="3.5" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="3.5" length2="1.5" x1="4.77" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="4.77" length2="1.5" x1="4.77" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="4.77" length2="1.5" x1="3.5" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="2.23" length2="1.5" x1="2.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="2.23" length2="1.5" x1="3.5" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="3.5" length2="1.5" x1="3.5" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="3.5" length2="1.5" x1="2.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="0.96" length2="1.5" x1="0.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="0.96" length2="1.5" x1="2.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="2.23" length2="1.5" x1="2.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="2.23" length2="1.5" x1="0.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="-0.31" length2="1.5" x1="-0.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="-0.31" length2="1.5" x1="0.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="0.96" length2="1.5" x1="0.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="0.96" length2="1.5" x1="-0.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="-1.58" length2="1.5" x1="-1.58" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="-1.58" length2="1.5" x1="-0.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="-0.31" length2="1.5" x1="-0.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="-0.31" length2="1.5" x1="-1.58" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="-2.85" length2="1.5" x1="-2.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="-2.85" length2="1.5" x1="-1.58" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="-1.58" length2="1.5" x1="-1.58" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="-1.58" length2="1.5" x1="-2.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="-4.11" length2="1.5" x1="-4.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="-4.11" length2="1.5" x1="-2.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10.42"/>
<line y2="-10.42" x2="-2.85" length2="1.5" x1="-2.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-13.39" x2="-2.85" length2="1.5" x1="-4.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-13.39"/>
<line y2="-1.88" x2="-22.14" length2="1.5" x1="-22.14" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-2.38"/>
<line y2="-2.38" x2="-22.14" length2="1.5" x1="-19.6" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-2.38"/>
<line y2="-2.38" x2="-19.6" length2="1.5" x1="-19.6" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.88"/>
<line y2="-1.88" x2="-19.6" length2="1.5" x1="-22.14" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.88"/>
<line y2="-1.88" x2="-25.18" length2="1.5" x1="-25.18" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-2.38"/>
<line y2="-2.38" x2="-25.18" length2="1.5" x1="-22.65" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-2.38"/>
<line y2="-2.38" x2="-22.65" length2="1.5" x1="-22.65" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.88"/>
<line y2="-1.88" x2="-22.65" length2="1.5" x1="-25.18" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.88"/>
<line y2="9.12" x2="8.58" length2="1.5" x1="8.58" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="8.58" length2="1.5" x1="9.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="9.85" length2="1.5" x1="9.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="9.85" length2="1.5" x1="8.58" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="7.3" length2="1.5" x1="7.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="7.3" length2="1.5" x1="8.58" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="8.58" length2="1.5" x1="8.58" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="8.58" length2="1.5" x1="7.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="6.03" length2="1.5" x1="6.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="6.03" length2="1.5" x1="7.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="7.3" length2="1.5" x1="7.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="7.3" length2="1.5" x1="6.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="4.77" length2="1.5" x1="4.77" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="4.77" length2="1.5" x1="6.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="6.03" length2="1.5" x1="6.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="6.03" length2="1.5" x1="4.77" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="3.5" length2="1.5" x1="3.5" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="3.5" length2="1.5" x1="4.77" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="4.77" length2="1.5" x1="4.77" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="4.77" length2="1.5" x1="3.5" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="2.23" length2="1.5" x1="2.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="2.23" length2="1.5" x1="3.5" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="3.5" length2="1.5" x1="3.5" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="3.5" length2="1.5" x1="2.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="0.96" length2="1.5" x1="0.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="0.96" length2="1.5" x1="2.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="2.23" length2="1.5" x1="2.23" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="2.23" length2="1.5" x1="0.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-0.31" length2="1.5" x1="-0.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-0.31" length2="1.5" x1="0.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="0.96" length2="1.5" x1="0.96" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="0.96" length2="1.5" x1="-0.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-1.58" length2="1.5" x1="-1.58" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-1.58" length2="1.5" x1="-0.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-0.31" length2="1.5" x1="-0.31" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-0.31" length2="1.5" x1="-1.58" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-2.85" length2="1.5" x1="-2.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-2.85" length2="1.5" x1="-1.58" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-1.58" length2="1.5" x1="-1.58" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-1.58" length2="1.5" x1="-2.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-4.11" length2="1.5" x1="-4.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-4.11" length2="1.5" x1="-2.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-2.85" length2="1.5" x1="-2.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-2.85" length2="1.5" x1="-4.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-5.38" length2="1.5" x1="-5.38" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-5.38" length2="1.5" x1="-4.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-4.11" length2="1.5" x1="-4.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-4.11" length2="1.5" x1="-5.38" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-6.66" length2="1.5" x1="-6.66" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-6.66" length2="1.5" x1="-5.38" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-5.38" length2="1.5" x1="-5.38" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-5.38" length2="1.5" x1="-6.66" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-7.93" length2="1.5" x1="-7.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-7.93" length2="1.5" x1="-6.66" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-6.66" length2="1.5" x1="-6.66" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-6.66" length2="1.5" x1="-7.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-9.19" length2="1.5" x1="-9.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-9.19" length2="1.5" x1="-7.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-7.93" length2="1.5" x1="-7.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-7.93" length2="1.5" x1="-9.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-10.46" length2="1.5" x1="-10.46" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-10.46" length2="1.5" x1="-9.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-9.19" length2="1.5" x1="-9.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-9.19" length2="1.5" x1="-10.46" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-14.65" length2="1.5" x1="-14.65" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-14.65" length2="1.5" x1="-13.38" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-13.38" length2="1.5" x1="-13.38" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-13.38" length2="1.5" x1="-14.65" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-15.91" length2="1.5" x1="-15.91" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-15.91" length2="1.5" x1="-14.65" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-14.65" length2="1.5" x1="-14.65" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-14.65" length2="1.5" x1="-15.91" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-17.19" length2="1.5" x1="-17.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-17.19" length2="1.5" x1="-15.91" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-15.91" length2="1.5" x1="-15.91" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-15.91" length2="1.5" x1="-17.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-18.46" length2="1.5" x1="-18.46" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-18.46" length2="1.5" x1="-17.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-17.19" length2="1.5" x1="-17.19" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-17.19" length2="1.5" x1="-18.46" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-19.73" length2="1.5" x1="-19.73" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-19.73" length2="1.5" x1="-18.46" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-18.46" length2="1.5" x1="-18.46" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-18.46" length2="1.5" x1="-19.73" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-20.99" length2="1.5" x1="-20.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-20.99" length2="1.5" x1="-19.73" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.16"/>
<line y2="6.16" x2="-19.73" length2="1.5" x1="-19.73" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="9.12" x2="-19.73" length2="1.5" x1="-20.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="9.12"/>
<line y2="1.09" x2="13.27" length2="1.5" x1="-26.07" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="1.09"/>
<line y2="-5.35" x2="13.27" length2="1.5" x1="-26.07" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-5.35"/>
<line y2="-0.47" x2="-26.07" length2="1.5" x1="-25.69" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-0.9"/>
<line y2="-3.79" x2="-26.07" length2="1.5" x1="-25.69" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-3.37"/>
<line y2="-0.9" x2="-25.69" length2="1.5" x1="-25.69" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-3.37"/>
<line y2="-3.79" x2="-26.07" length2="1.5" x1="-26.07" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-12.64"/>
<line y2="8.38" x2="-26.07" length2="1.5" x1="-26.07" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-0.47"/>
<line y2="-0.47" x2="13.27" length2="1.5" x1="12.89" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-0.9"/>
<line y2="-3.79" x2="13.27" length2="1.5" x1="12.89" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-3.37"/>
<line y2="-0.9" x2="12.89" length2="1.5" x1="12.89" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-3.37"/>
<line y2="-3.79" x2="13.27" length2="1.5" x1="13.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-12.64"/>
<line y2="-12.64" x2="13.27" length2="1.5" x1="7.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-12.64"/>
<line y2="-12.64" x2="-5.38" length2="1.5" x1="-26.07" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-12.64"/>
<line y2="8.38" x2="-26.07" length2="1.5" x1="-20.99" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.38"/>
<line y2="8.38" x2="-13.38" length2="1.5" x1="-10.46" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.38"/>
<line y2="8.38" x2="9.85" length2="1.5" x1="13.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.38"/>
<line y2="8.38" x2="13.27" length2="1.5" x1="13.27" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-0.47"/>
<line y2="4.69" x2="9.2" length2="1.5" x1="9.2" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.75"/>
<line y2="4.69" x2="9.3" length2="1.5" x1="9.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.72"/>
<line y2="4.69" x2="9.36" length2="1.5" x1="9.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.69"/>
<line y2="4.69" x2="9.2" length2="1.5" x1="8.81" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.69"/>
<line y2="5.24" x2="8.87" length2="1.5" x1="8.67" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.24"/>
<line y2="5.35" x2="8.87" length2="1.5" x1="8.69" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.35"/>
<line y2="4.59" x2="9.36" length2="1.5" x1="8.91" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.59"/>
<line y2="4.69" x2="4.13" length2="1.5" x1="4.13" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.75"/>
<line y2="4.69" x2="4.22" length2="1.5" x1="4.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.72"/>
<line y2="5.35" x2="3.71" length2="1.5" x1="3.71" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="4.69" x2="4.29" length2="1.5" x1="4.22" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.69"/>
<line y2="4.69" x2="4.13" length2="1.5" x1="3.74" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.69"/>
<line y2="5.24" x2="3.79" length2="1.5" x1="3.6" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.24"/>
<line y2="5.35" x2="3.79" length2="1.5" x1="3.71" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.35"/>
<line y2="4.59" x2="4.29" length2="1.5" x1="3.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.59"/>
<line y2="4.69" x2="-0.95" length2="1.5" x1="-0.95" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.75"/>
<line y2="4.69" x2="-0.85" length2="1.5" x1="-0.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.72"/>
<line y2="4.69" x2="-0.79" length2="1.5" x1="-0.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.69"/>
<line y2="4.69" x2="-0.95" length2="1.5" x1="-1.34" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.69"/>
<line y2="5.24" x2="-1.28" length2="1.5" x1="-1.48" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.24"/>
<line y2="5.35" x2="-1.28" length2="1.5" x1="-1.46" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.35"/>
<line y2="4.59" x2="-0.79" length2="1.5" x1="-1.25" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.59"/>
<line y2="4.69" x2="-6.03" length2="1.5" x1="-6.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.75"/>
<line y2="4.69" x2="-5.93" length2="1.5" x1="-5.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.72"/>
<line y2="5.35" x2="-6.44" length2="1.5" x1="-6.44" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.55"/>
<line y2="4.69" x2="-5.87" length2="1.5" x1="-5.93" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.69"/>
<line y2="4.69" x2="-6.03" length2="1.5" x1="-6.41" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.69"/>
<line y2="5.24" x2="-6.36" length2="1.5" x1="-6.56" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.24"/>
<line y2="5.35" x2="-6.36" length2="1.5" x1="-6.44" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.35"/>
<line y2="5.35" x2="-6.53" length2="1.5" x1="-6.54" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="5.35"/>
<line y2="4.59" x2="-5.87" length2="1.5" x1="-6.32" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.59"/>
<line y2="4.39" x2="9.36" length2="1.5" x1="9.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.7"/>
<line y2="4.39" x2="4.29" length2="1.5" x1="4.29" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.7"/>
<line y2="4.39" x2="-0.79" length2="1.5" x1="-0.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.7"/>
<line y2="4.39" x2="-5.87" length2="1.5" x1="-5.87" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.7"/>
<line y2="4.39" x2="9.36" length2="1.5" x1="9.36" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.7"/>
<line y2="4.39" x2="4.29" length2="1.5" x1="4.29" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.7"/>
<line y2="4.39" x2="-0.79" length2="1.5" x1="-0.79" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.7"/>
<line y2="4.39" x2="-5.87" length2="1.5" x1="-5.87" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.7"/>
<line y2="3.11" x2="7.3" length2="1.5" x1="7.5" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="7.5" length2="1.5" x1="9.37" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="9.37" length2="1.5" x1="9.78" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.63"/>
<line y2="3.11" x2="7.3" length2="1.5" x1="7.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="7.11" length2="1.5" x1="5.28" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="5.28" length2="1.5" x1="4.83" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.66"/>
<line y2="3.11" x2="2.23" length2="1.5" x1="2.42" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="2.42" length2="1.5" x1="4.3" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="4.3" length2="1.5" x1="4.71" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.63"/>
<line y2="3.11" x2="2.23" length2="1.5" x1="2.03" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="2.03" length2="1.5" x1="0.2" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="0.2" length2="1.5" x1="-0.24" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.66"/>
<line y2="3.11" x2="-2.85" length2="1.5" x1="-2.65" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="-2.65" length2="1.5" x1="-0.77" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="-0.77" length2="1.5" x1="-0.37" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.63"/>
<line y2="3.11" x2="-2.85" length2="1.5" x1="-3.04" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="-3.04" length2="1.5" x1="-4.87" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="-4.87" length2="1.5" x1="-5.32" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.66"/>
<line y2="3.4" x2="-14.45" length2="1.5" x1="-13.86" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.4"/>
<line y2="3.4" x2="-13.86" length2="1.5" x1="-13.46" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.66"/>
<line y2="3.14" x2="-14.65" length2="1.5" x1="-14.45" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.4"/>
<line y2="3.4" x2="-14.85" length2="1.5" x1="-15.43" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.4"/>
<line y2="3.4" x2="-15.43" length2="1.5" x1="-15.84" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.66"/>
<line y2="3.14" x2="-14.65" length2="1.5" x1="-14.45" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.4"/>
<line y2="3.14" x2="-14.65" length2="1.5" x1="-14.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.4"/>
<line y2="3.14" x2="-18.46" length2="1.5" x1="-18.26" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.4"/>
<line y2="3.4" x2="-18.26" length2="1.5" x1="-16.39" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.4"/>
<line y2="3.4" x2="-16.39" length2="1.5" x1="-15.98" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.66"/>
<line y2="3.14" x2="-18.46" length2="1.5" x1="-18.65" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.4"/>
<line y2="3.4" x2="-18.65" length2="1.5" x1="-20.48" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.4"/>
<line y2="3.4" x2="-20.48" length2="1.5" x1="-20.94" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.7"/>
<line y2="3.11" x2="-7.93" length2="1.5" x1="-7.73" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="-7.73" length2="1.5" x1="-5.85" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="-5.85" length2="1.5" x1="-5.45" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.63"/>
<line y2="3.11" x2="-7.93" length2="1.5" x1="-8.11" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="-8.11" length2="1.5" x1="-9.95" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.37"/>
<line y2="3.37" x2="-9.95" length2="1.5" x1="-10.4" end2="none" antialias="false" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="3.66"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-1.91" y="-7.39" rotation="0" text="Digital Inputs" color="#0000ff"/>
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" x="-12.53" y="20.52" rotation="0" text="Dimmer" color="#0000ff"/>
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" x="-12.55" y="23.34" rotation="0" text="100029" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="6.99" y="-8.49" rotation="90" text="GND" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="18" y="-1" rotation="0" text="max. 210W" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="6.81" y="1.77" rotation="0" text="Q4" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="8.24" y="5.54" rotation="90" text="N" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="6.97" y="5.54" rotation="90" text="N" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="5.71" y="5.54" rotation="90" text="L" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="24" y="13" rotation="0" text="max. 210W" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="1" y="1" rotation="0" text="Q3" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="3.17" y="5.54" rotation="90" text="N" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="1.9" y="5.54" rotation="90" text="N" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="1" y="5" rotation="90" text="L" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="22" y="2" rotation="0" text="max. 210W" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-3.35" y="1.77" rotation="0" text="Q2" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-1.91" y="5.54" rotation="90" text="N" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-3.18" y="5.54" rotation="90" text="N" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-4.45" y="5.54" rotation="90" text="L" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="23" y="6" rotation="0" text="max. 400W" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-8" y="2" rotation="0" text="Q1" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-6.98" y="5.54" rotation="90" text="N" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-8.25" y="5.54" rotation="90" text="N" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-9.52" y="5.54" rotation="90" text="L" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-13.7" y="6.06" rotation="90" text="LOX -" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-14.97" y="6.06" rotation="90" text="LOX +" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-19.54" y="2.47" rotation="0" text="Power" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-16.24" y="6.03" rotation="90" text="GND" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-17.51" y="6.03" rotation="90" text="GND" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-18.78" y="6.04" rotation="90" text="24V +" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-20.05" y="6.04" rotation="90" text="24V +" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-15.38" y="2.9" rotation="0" text="Link" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-16.05" y="1.85" rotation="0" text="LOXONE" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-4.42" y="-10.6" rotation="90" text="lox 23" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-3.15" y="-10.6" rotation="90" text="lox 24" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="0.66" y="-10.6" rotation="90" text="lox 27" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-0.61" y="-10.6" rotation="90" text="lox 26" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-1.88" y="-10.6" rotation="90" text="lox 25" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="7" y="-10.6" rotation="90" text="lox 32" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="5.73" y="-10.6" rotation="90" text="lox 31" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="4.46" y="-10.6" rotation="90" text="lox 30" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="3.19" y="-10.6" rotation="90" text="lox 29" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="1.92" y="-10.6" rotation="90" text="lox 28" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="5.07" y="-8.99" rotation="0" text="I8" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="3.8" y="-9" rotation="0" text="I7" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="2.53" y="-8.99" rotation="0" text="I6" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="1.26" y="-9" rotation="0" text="I5" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="0" y="-9" rotation="0" text="I4" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-1.27" y="-8.99" rotation="0" text="I3" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-2.54" y="-8.99" rotation="0" text="I2" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-3.81" y="-9" rotation="0" text="I1" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-4.44" y="-8.24" rotation="90" text="+24V" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="9.54" y="8.95" rotation="90" text="lox 22" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="8.28" y="8.95" rotation="90" text="lox 21" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="7.01" y="8.95" rotation="90" text="lox 20" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="5.74" y="8.95" rotation="90" text="lox 19" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="4.47" y="8.95" rotation="90" text="lox 18" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="3.2" y="8.95" rotation="90" text="lox 17" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="1.93" y="8.95" rotation="90" text="lox 16" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="0.66" y="8.95" rotation="90" text="lox 15" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-0.61" y="8.95" rotation="90" text="lox 14" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-1.88" y="8.95" rotation="90" text="lox 13" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-3.15" y="8.95" rotation="90" text="lox 12" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-4.42" y="8.95" rotation="90" text="lox 11" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-5.69" y="8.95" rotation="90" text="lox 10" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-6.96" y="8.95" rotation="90" text="lox 9" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-8.23" y="8.95" rotation="90" text="lox 8" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-9.5" y="8.95" rotation="90" text="lox 7" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-13.68" y="8.95" rotation="90" text="lox 6" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-14.95" y="8.95" rotation="90" text="lox 5" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-16.22" y="8.95" rotation="90" text="lox 4" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-17.49" y="8.95" rotation="90" text="lox 3" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-18.76" y="8.95" rotation="90" text="lox 2" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-20.03" y="8.95" rotation="90" text="lox 1" color="#0000ff"/>
<text font="Sans Serif,1,-1,5,50,0,0,0,0,0" x="-9.43" y="0.02" rotation="0" text="DIMMER" color="#0000ff"/>
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" x="-17" y="-3" rotation="0" text="LOXONE" color="#0000ff"/>
<terminal x="-20" y="30" orientation="s"/>
</description>
</definition>
@@ -0,0 +1,28 @@
<definition orientation="dyyy" height="70" width="90" link_type="slave" hotspot_x="45" version="0.70" type="element" hotspot_y="33">
<uuid uuid="{788c5c4c-c86d-41b4-85ed-371e31cb99a0}"/>
<names>
<name lang="de">Miniserver analoger Ausgang</name>
</names>
<kindInformations>
<kindInformation name="number" show="1">1</kindInformation>
<kindInformation name="state" show="1">NO</kindInformation>
<kindInformation name="type" show="1">simple</kindInformation>
</kindInformations>
<informations></informations>
<description>
<dynamic_text Valignment="AlignTop" y="-4" text_from="ElementInfo" font="Sans Serif,5,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" x="-37" z="1" text_width="-1" uuid="{824f9521-d87d-412b-84c9-dd1d5af5df4c}" frame="false" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<circle diameter="5" y="27.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-2.5" antialias="false"/>
<polygon x1="-40" x3="-3" x2="-40" y3="-30" closed="false" y1="-30" y2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x1="3" x3="40" x2="-4" y3="-30" closed="false" y1="-30" y2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x1="-40" x3="-3" x2="-40" y3="30" closed="false" y1="-30" y2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x1="3" x3="40" x2="40" y3="-30" closed="false" y1="30" y2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" y="-15" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="0" text="Loxone&#xa;Miniserver&#xa;analoger&#xa;Ausgang" rotation="0"/>
<dynamic_text Valignment="AlignTop" y="13" text_from="UserText" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal" Halignment="AlignLeft" x="-9" z="13" text_width="-1" uuid="{b29e095c-a984-4597-a674-b5d1afb0c91e}" frame="false" rotation="0">
<text>AI1</text>
</dynamic_text>
<terminal orientation="s" y="32" x="0"/>
</description>
</definition>
@@ -0,0 +1,28 @@
<definition orientation="dyyy" height="70" width="90" link_type="slave" hotspot_x="45" version="0.70" type="element" hotspot_y="36">
<uuid uuid="{10e827da-cc77-4a45-9ce4-32f220afc46d}"/>
<names>
<name lang="de">Miniserver analoger Eingang</name>
</names>
<kindInformations>
<kindInformation name="number" show="1">1</kindInformation>
<kindInformation name="state" show="1">NO</kindInformation>
<kindInformation name="type" show="1">simple</kindInformation>
</kindInformations>
<informations></informations>
<description>
<dynamic_text Valignment="AlignTop" y="-4" text_from="ElementInfo" font="Sans Serif,5,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" x="-37" z="1" text_width="-1" uuid="{824f9521-d87d-412b-84c9-dd1d5af5df4c}" frame="false" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<circle diameter="5" y="-32.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-2.5" antialias="false"/>
<polygon x1="-40" x3="-3" x2="-40" y3="-30" closed="false" y1="-30" y2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x1="3" x3="40" x2="3" y3="-30" closed="false" y1="-30" y2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x1="-40" x3="-3" x2="-40" y3="30" closed="false" y1="-30" y2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x1="-5" x3="40" x2="40" y3="-30" closed="false" y1="30" y2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" y="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="0" text="Loxone&#xa;Miniserver&#xa;analoger&#xa;Eingang" rotation="0"/>
<dynamic_text Valignment="AlignTop" y="-29" text_from="UserText" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal" Halignment="AlignLeft" x="-7" z="13" text_width="-1" uuid="{b29e095c-a984-4597-a674-b5d1afb0c91e}" frame="false" rotation="0">
<text>AI1</text>
</dynamic_text>
<terminal orientation="n" y="-31" x="0"/>
</description>
</definition>
@@ -0,0 +1,28 @@
<definition orientation="dyyy" height="70" width="90" link_type="slave" hotspot_x="45" version="0.70" type="element" hotspot_y="36">
<uuid uuid="{539db70b-f822-47c7-b506-fc1e69637e65}"/>
<names>
<name lang="de">Miniserver digitaler Eingang</name>
</names>
<kindInformations>
<kindInformation name="number" show="1">1</kindInformation>
<kindInformation name="state" show="1">NO</kindInformation>
<kindInformation name="type" show="1">simple</kindInformation>
</kindInformations>
<informations></informations>
<description>
<dynamic_text Valignment="AlignTop" y="-4" text_from="ElementInfo" font="Sans Serif,5,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" x="-37" z="1" text_width="-1" uuid="{824f9521-d87d-412b-84c9-dd1d5af5df4c}" frame="false" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<circle diameter="5" y="-32.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-2.5" antialias="false"/>
<polygon x1="-40" x3="-3" x2="-40" y3="-30" closed="false" y1="-30" y2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x1="3" x3="40" x2="3" y3="-30" closed="false" y1="-30" y2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x1="-40" x3="-3" x2="-40" y3="30" closed="false" y1="-30" y2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x1="-5" x3="40" x2="40" y3="-30" closed="false" y1="30" y2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text color="#000000" y="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="0" text="Loxone&#xa;Miniserver&#xa;digitaler&#xa;Eingang" rotation="0"/>
<dynamic_text Valignment="AlignTop" y="-29" text_from="UserText" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal" Halignment="AlignLeft" x="-7" z="13" text_width="-1" uuid="{b29e095c-a984-4597-a674-b5d1afb0c91e}" frame="false" rotation="0">
<text>I1</text>
</dynamic_text>
<terminal orientation="n" y="-31" x="0"/>
</description>
</definition>
@@ -0,0 +1,342 @@
<definition width="190" type="element" version="0.90" height="110" hotspot_y="48" link_type="master" hotspot_x="97">
<uuid uuid="{19b7b3e8-4f17-4da4-bffd-8f31cb19f0d7}"/>
<names>
<name lang="en">Miniserver Gen.1 digitale Ausgänge</name>
<name lang="fr">Miniserver Gen.1 digitale Ausgänge</name>
</names>
<kindInformations>
<kindInformation name="type">coil</kindInformation>
</kindInformations>
<elementInformations>
<elementInformation name="plant" show="1"></elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1">Loxone</elementInformation>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
<elementInformation name="description" show="1">Miniserver Gen.1</elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
<elementInformation name="designation" show="1"></elementInformation>
</elementInformations>
<informations>&#xd;
Author: DXF converter&#xd;
License:see http://qelectrotech.org/wiki/doc/elements_license&#xd;
Converter version:V3.0 DB&#xd;
&#xd;
</informations>
<description>
<text rotation="0" x="-87" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-17.248" text="LAN"/>
<polygon x1="90" x2="54" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="46" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="58" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<text rotation="270" x="-51.7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="GND"/>
<text rotation="0" x="-48.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I2"/>
<text rotation="0" x="22.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI4"/>
<text rotation="270" x="14" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<text rotation="270" x="32.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<text rotation="0" x="40" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ2"/>
<text rotation="270" x="50.2" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<text rotation="0" x="59" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ4"/>
<text rotation="0" x="-36.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I4"/>
<polygon x1="-90" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<text rotation="0" x="-43" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I3"/>
<text rotation="270" x="-84" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" y="-30" text="IP"/>
<text rotation="0" x="-30.7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I5"/>
<text rotation="0" x="45" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q8&#xa;"/>
<text rotation="0" x="-90" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="26" text="KNX/EIB&#xa;Bus"/>
<text rotation="270" x="-80" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="44" text="EIB+"/>
<text rotation="270" x="-85.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="EIB-"/>
<text rotation="0" x="-54.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I1"/>
<text rotation="270" x="-57.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-21.7" text="24V+"/>
<text rotation="0" x="-12.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I8"/>
<polygon x1="90" x2="64" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="-90" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="64" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-62" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="54" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-80" x2="-83" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-21.136"/>
<text rotation="0" x="-17.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I7"/>
<polygon x1="58" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="64" x2="64" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="46" x2="46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-78" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="53" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ3"/>
<polygon x1="40" x2="46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-78" x2="-80" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-22.252" closed="false" antialias="false" y2="-21.136"/>
<polygon x1="58" x2="64" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="52" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-78" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="4.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI2"/>
<polygon x1="54" x2="54" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="-24.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I6"/>
<polygon x1="40" x2="34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<text rotation="0" x="-1.5" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI1"/>
<text rotation="0" x="34" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ1"/>
<polygon x1="48" x2="54" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<text rotation="0" x="-49" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="26.2" text="Loxone&#xa;Link"/>
<polygon x1="-88" x2="-85" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-21.136"/>
<polygon x1="-84" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="52" x2="46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-90" x2="-88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-22.252" closed="false" antialias="false" y2="-21.136"/>
<polygon x1="-90" x2="-90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="42" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<text rotation="0" x="16.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI3"/>
<text rotation="270" x="-4" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<polygon x1="40" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="52" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-83" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-20.056"/>
<polygon x1="46" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="48" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="-3" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q3"/>
<polygon x1="34" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-84" x2="-90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="48" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="-26" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q1"/>
<polygon x1="-84" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-85" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-20.056"/>
<polygon x1="42" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-90" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="52" x2="49" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-80" x2="-83" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="-15" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q2"/>
<polygon x1="-78" x2="-80" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="34.228" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q4"/>
<polygon x1="54" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-88" x2="-85" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="21" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q5"/>
<polygon x1="44" x2="47" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-90" x2="-88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="34.228" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="33" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q7"/>
<polygon x1="42" x2="44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-83" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="31.996"/>
<polygon x1="49" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<text rotation="270" x="-46" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="LOX+"/>
<text rotation="270" x="-57.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="GND"/>
<polygon x1="47" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-85" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="31.996"/>
<text rotation="270" x="-40" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="LOX-"/>
<polygon x1="-30" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<text rotation="270" x="-63.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="24V+"/>
<text rotation="0" x="-17" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" y="30.7" text="Digital Outputs (Relays) max 5A"/>
<polygon x1="-50" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-38" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-14" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-38" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-26" x2="-32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-38" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-44" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="30" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-14" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-56" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="6" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-18" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-38" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-6" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="42" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-26" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="18" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-50" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-32" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="22" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="18" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="30" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="42" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-20" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-18" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-6" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="6" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-26" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="36" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-38" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-56" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="34" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="12" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-24" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-12" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="0" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="24" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-68" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-6" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-20" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="18" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="6" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="10" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="30" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-32" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-56" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-44" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-18" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-56" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-30" x2="-30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-74" x2="-74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="24" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-24" x2="-30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="36" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-68" x2="-74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-50" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="12" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-32" x2="-32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="0" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-12" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-20" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-44" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-68" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="12" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-26" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-38" x2="-32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="24" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="22" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="0" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-12" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-24" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="36" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-56" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="6" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-74" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-30" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="18" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="10" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="30" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-6" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-56" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-18" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="34" x2="34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="28" x2="25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-20" x2="-23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="40" x2="37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-62" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="16" x2="13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="4" x2="1" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-8" x2="-11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="6" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="28" x2="34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-18" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-6" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<dynamic_text rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="-112" Halignment="AlignRight" uuid="{54b619d5-111f-4cb0-a758-b177501d33d1}" text_width="-1" z="201" keep_visual_rotation="true" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal" y="-37.7">
<text></text>
<info_name>formula</info_name>
</dynamic_text>
<polygon x1="42" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="18" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="30" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="16" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="32" x2="35" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-4" x2="-1" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-16" x2="-13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-28" x2="-25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="20" x2="23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="8" x2="11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-18" x2="-16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="18" x2="20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="30" x2="32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="6" x2="8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-30" x2="-28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="4" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-6" x2="-4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-11" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-2" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="1" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-23" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="13" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="25" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="37" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="22" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="23" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="35" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="11" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-25" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-1" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-13" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="10" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-2" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-2" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="28" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="16" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-8" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="4" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="28" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="16" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-14" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="4" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-2" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="22" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-8" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="10" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-8" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-14" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-76.25" x2="-76.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-64.37" x2="-76.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-64.37" x2="-64.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-76.25" x2="-64.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-90.58" x2="-90.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-78.69" x2="-90.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-78.69" x2="-78.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-90.58" x2="-78.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-94" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="17.2" closed="false" antialias="false" y2="17.2"/>
<polygon x1="-95" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-9.8" closed="false" antialias="false" y2="-9.8"/>
<polygon x1="-93" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.2" closed="false" antialias="false" y2="10"/>
<polygon x1="-93" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-92.97" x2="-92.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="8.2"/>
<polygon x1="-95" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-95" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="10" closed="false" antialias="false" y2="47.8"/>
<polygon x1="88" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.2" closed="false" antialias="false" y2="10"/>
<polygon x1="88" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="88" x2="88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="8.2"/>
<polygon x1="90" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-74" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="90" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="10" closed="false" antialias="false" y2="47.8"/>
<polygon x1="-40.37" x2="-43.18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-38.51" x2="-40.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-43.18" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-47.75" x2="-45.05" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-49.72" x2="-47.75" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-43.18" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-45.05" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-61.03" x2="-61.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-52.26" x2="-61.03" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-50.34" x2="-52.26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-62.9" x2="-61.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-71.47" x2="-62.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-73.65" x2="-71.47" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.769" closed="false" antialias="false" y2="32.509"/>
<text rotation="270" x="-70" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="24V+"/>
<text rotation="0" x="-67" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="28.9" text="Power"/>
<text rotation="0" x="-20" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-0.8" text="Loxone"/>
<text rotation="0" x="-27" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="16.3" text="Miniserver Gen.1"/>
<dynamic_text rotation="270" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="-63" Halignment="AlignLeft" uuid="{1c2198c8-05e6-4b4c-a7a4-e0fe74799646}" text_width="-1" z="287" keep_visual_rotation="true" font="Sans Serif,3,-1,5,0,0,0,0,0,0,normal" y="-45.8">
<text></text>
</dynamic_text>
<dynamic_text rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="120" Halignment="AlignLeft" uuid="{73dc16bb-db42-499b-bab2-29fc4fe4903e}" text_width="-1" z="288" keep_visual_rotation="true" font="Sans Serif,4,-1,5,0,0,0,0,0,0,normal" y="-41">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect width="12" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-90" ry="0" antialias="false" height="20" rx="0" y="-44"/>
<terminal name="" x="-59" type="Generic" uuid="{0febf750-067a-4c91-9ace-325d3ba116a3}" orientation="s" y="49"/>
<terminal name="" x="13" type="Generic" uuid="{689f328d-964b-4005-ba3c-996b08152db6}" orientation="n" y="-37"/>
<terminal name="" x="-53" type="Generic" uuid="{ab9d3276-f613-41fb-9c46-9f2e5a5b2e31}" orientation="s" y="49"/>
<terminal name="" x="-65" type="Generic" uuid="{c76524d8-a675-40d4-95f5-0211c06aaccb}" orientation="s" y="49"/>
<terminal name="" x="-81" type="Generic" uuid="{9a317ef7-adf9-479e-88d5-93dd180a987f}" orientation="s" y="49"/>
<terminal name="" x="-41" type="Generic" uuid="{598299b8-5592-469e-b95b-8ef2f071c6c5}" orientation="s" y="49"/>
<terminal name="" x="49" type="Generic" uuid="{6a2e1da4-eb96-4237-a1d6-0660963610bd}" orientation="n" y="-37"/>
<terminal name="" x="-87" type="Generic" uuid="{eae84803-cf0f-4811-bd8f-c3cdb8dbb754}" orientation="s" y="49"/>
<terminal name="" x="-59" type="Generic" uuid="{23062542-bf44-4510-9292-64a5d67865a7}" orientation="n" y="-37"/>
<terminal name="" x="-5" type="Generic" uuid="{918c5172-9985-4dac-93ce-0e4da9d9e946}" orientation="n" y="-37"/>
<terminal name="" x="-71" type="Generic" uuid="{11e6467f-09e2-4e72-ba97-9dbf370090ab}" orientation="s" y="49"/>
<terminal name="" x="-47" type="Generic" uuid="{a55bd590-fc0f-4052-9d62-ba3f35054cec}" orientation="s" y="49"/>
<terminal name="" x="31" type="Generic" uuid="{8698e537-840f-4a28-b8a3-07a13ef33888}" orientation="n" y="-37"/>
</description>
</definition>
@@ -0,0 +1,342 @@
<definition width="190" type="element" version="0.90" height="110" hotspot_y="48" link_type="master" hotspot_x="97">
<uuid uuid="{3dbaeebb-e3d9-46ee-ac6e-d1fab9646322}"/>
<names>
<name lang="en">Miniserver Gen.1 analoge Eingänge</name>
<name lang="de">Miniserver Gen.1 analoge Eingänge</name>
</names>
<kindInformations>
<kindInformation name="type">coil</kindInformation>
</kindInformations>
<elementInformations>
<elementInformation name="plant" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1">Loxone</elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
<elementInformation name="description" show="1">Miniserver Gen.1</elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
<elementInformation name="designation" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
</elementInformations>
<informations>&#xd;
Author: DXF converter&#xd;
License:see http://qelectrotech.org/wiki/doc/elements_license&#xd;
Converter version:V3.0 DB&#xd;
&#xd;
</informations>
<description>
<text rotation="0" x="-87" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-17.248" text="LAN"/>
<polygon x1="90" x2="54" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="46" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="58" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<text rotation="270" x="-51.7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="GND"/>
<text rotation="0" x="-48.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I2"/>
<text rotation="0" x="22.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI4"/>
<text rotation="270" x="14" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<text rotation="270" x="32.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<text rotation="0" x="40" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ2"/>
<text rotation="270" x="50.2" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<text rotation="0" x="59" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ4"/>
<text rotation="0" x="-36.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I4"/>
<polygon x1="-90" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<text rotation="0" x="-43" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I3"/>
<text rotation="270" x="-84" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" y="-30" text="IP"/>
<text rotation="0" x="-30.7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I5"/>
<text rotation="0" x="45" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q8&#xa;"/>
<text rotation="0" x="-90" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="26" text="KNX/EIB&#xa;Bus"/>
<text rotation="270" x="-80" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="44" text="EIB+"/>
<text rotation="270" x="-85.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="EIB-"/>
<text rotation="0" x="-54.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I1"/>
<text rotation="270" x="-57.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-21.7" text="24V+"/>
<text rotation="0" x="-12.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I8"/>
<polygon x1="90" x2="64" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="-90" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="64" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-62" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="54" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-80" x2="-83" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-21.136"/>
<text rotation="0" x="-17.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I7"/>
<polygon x1="58" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="64" x2="64" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="46" x2="46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-78" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="53" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ3"/>
<polygon x1="40" x2="46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-78" x2="-80" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-22.252" closed="false" antialias="false" y2="-21.136"/>
<polygon x1="58" x2="64" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="52" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-78" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="4.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI2"/>
<polygon x1="54" x2="54" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="-24.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I6"/>
<polygon x1="40" x2="34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<text rotation="0" x="-1.5" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI1"/>
<text rotation="0" x="34" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ1"/>
<polygon x1="48" x2="54" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<text rotation="0" x="-49" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="26.2" text="Loxone&#xa;Link"/>
<polygon x1="-88" x2="-85" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-21.136"/>
<polygon x1="-84" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="52" x2="46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-90" x2="-88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-22.252" closed="false" antialias="false" y2="-21.136"/>
<polygon x1="-90" x2="-90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="42" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<text rotation="0" x="16.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI3"/>
<text rotation="270" x="-4" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<polygon x1="40" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="52" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-83" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-20.056"/>
<polygon x1="46" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="48" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="-3" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q3"/>
<polygon x1="34" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-84" x2="-90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="48" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="-26" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q1"/>
<polygon x1="-84" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-85" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-20.056"/>
<polygon x1="42" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-90" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="52" x2="49" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-80" x2="-83" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="-15" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q2"/>
<polygon x1="-78" x2="-80" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="34.228" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q4"/>
<polygon x1="54" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-88" x2="-85" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="21" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q5"/>
<polygon x1="44" x2="47" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-90" x2="-88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="34.228" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="33" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q7"/>
<polygon x1="42" x2="44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-83" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="31.996"/>
<polygon x1="49" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<text rotation="270" x="-46" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="LOX+"/>
<text rotation="270" x="-57.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="GND"/>
<polygon x1="47" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-85" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="31.996"/>
<text rotation="270" x="-40" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="LOX-"/>
<polygon x1="-30" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<text rotation="270" x="-63.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="24V+"/>
<text rotation="0" x="-17" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" y="30.7" text="Digital Outputs (Relays) max 5A"/>
<polygon x1="-50" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-38" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-14" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-38" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-26" x2="-32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-38" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-44" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="30" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-14" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-56" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="6" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-18" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-38" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-6" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="42" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-26" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="18" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-50" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-32" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="22" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="18" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="30" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="42" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-20" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-18" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-6" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="6" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-26" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="36" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-38" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-56" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="34" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="12" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-24" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-12" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="0" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="24" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-68" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-6" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-20" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="18" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="6" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="10" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="30" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-32" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-56" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-44" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-18" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-56" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-30" x2="-30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-74" x2="-74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="24" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-24" x2="-30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="36" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-68" x2="-74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-50" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="12" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-32" x2="-32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="0" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-12" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-20" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-44" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-68" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="12" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-26" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-38" x2="-32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="24" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="22" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="0" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-12" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-24" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="36" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-56" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="6" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-74" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-30" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="18" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="10" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="30" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-6" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-56" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-18" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="34" x2="34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="28" x2="25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-20" x2="-23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="40" x2="37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-62" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="16" x2="13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="4" x2="1" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-8" x2="-11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="6" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="28" x2="34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-18" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-6" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<dynamic_text rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="-112" Halignment="AlignRight" uuid="{54b619d5-111f-4cb0-a758-b177501d33d1}" text_width="-1" z="201" keep_visual_rotation="true" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal" y="-37.7">
<text></text>
<info_name>formula</info_name>
</dynamic_text>
<polygon x1="42" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="18" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="30" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="16" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="32" x2="35" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-4" x2="-1" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-16" x2="-13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-28" x2="-25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="20" x2="23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="8" x2="11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-18" x2="-16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="18" x2="20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="30" x2="32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="6" x2="8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-30" x2="-28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="4" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-6" x2="-4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-11" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-2" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="1" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-23" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="13" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="25" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="37" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="22" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="23" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="35" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="11" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-25" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-1" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-13" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="10" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-2" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-2" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="28" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="16" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-8" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="4" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="28" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="16" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-14" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="4" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-2" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="22" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-8" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="10" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-8" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-14" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-76.25" x2="-76.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-64.37" x2="-76.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-64.37" x2="-64.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-76.25" x2="-64.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-90.58" x2="-90.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-78.69" x2="-90.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-78.69" x2="-78.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-90.58" x2="-78.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-94" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="17.2" closed="false" antialias="false" y2="17.2"/>
<polygon x1="-95" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-9.8" closed="false" antialias="false" y2="-9.8"/>
<polygon x1="-93" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.2" closed="false" antialias="false" y2="10"/>
<polygon x1="-93" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-92.97" x2="-92.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="8.2"/>
<polygon x1="-95" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-95" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="10" closed="false" antialias="false" y2="47.8"/>
<polygon x1="88" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.2" closed="false" antialias="false" y2="10"/>
<polygon x1="88" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="88" x2="88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="8.2"/>
<polygon x1="90" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-74" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="90" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="10" closed="false" antialias="false" y2="47.8"/>
<polygon x1="-40.37" x2="-43.18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-38.51" x2="-40.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-43.18" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-47.75" x2="-45.05" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-49.72" x2="-47.75" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-43.18" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-45.05" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-61.03" x2="-61.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-52.26" x2="-61.03" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-50.34" x2="-52.26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-62.9" x2="-61.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-71.47" x2="-62.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-73.65" x2="-71.47" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.769" closed="false" antialias="false" y2="32.509"/>
<text rotation="270" x="-70" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="24V+"/>
<text rotation="0" x="-67" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="28.9" text="Power"/>
<text rotation="0" x="-20" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-0.8" text="Loxone"/>
<text rotation="0" x="-27" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="16.3" text="Miniserver Gen.1"/>
<dynamic_text rotation="270" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="-63" Halignment="AlignLeft" uuid="{1c2198c8-05e6-4b4c-a7a4-e0fe74799646}" text_width="-1" z="287" keep_visual_rotation="true" font="Sans Serif,3,-1,5,0,0,0,0,0,0,normal" y="-45.8">
<text></text>
</dynamic_text>
<dynamic_text rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="120" Halignment="AlignLeft" uuid="{73dc16bb-db42-499b-bab2-29fc4fe4903e}" text_width="-1" z="288" keep_visual_rotation="true" font="Sans Serif,4,-1,5,0,0,0,0,0,0,normal" y="60">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect width="12" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-90" ry="0" antialias="false" height="20" rx="0" y="-44"/>
<terminal name="" x="-71" type="Generic" uuid="{c5762b10-1735-43df-a6c5-17fae968b28c}" orientation="s" y="49"/>
<terminal name="" x="-41" type="Generic" uuid="{a1b60de7-5261-47b1-a1f3-ef87517bb117}" orientation="s" y="49"/>
<terminal name="" x="-53" type="Generic" uuid="{7bbd7e04-b967-4522-8909-de1f279e3168}" orientation="s" y="49"/>
<terminal name="" x="-81" type="Generic" uuid="{456b87fc-c77f-4e92-ab98-94e2418ce86d}" orientation="s" y="49"/>
<terminal name="" x="-87" type="Generic" uuid="{2ab4d20b-85f8-444a-9d9e-ed865870c5d0}" orientation="s" y="49"/>
<terminal name="" x="31" type="Generic" uuid="{053be67a-203a-44a8-8d68-685d778e6ada}" orientation="n" y="-37"/>
<terminal name="" x="13" type="Generic" uuid="{384cb120-3327-47a6-90a1-619a3ba8da1b}" orientation="n" y="-37"/>
<terminal name="" x="-47" type="Generic" uuid="{88410db0-7415-4d02-91f3-b97ac712f70b}" orientation="s" y="49"/>
<terminal name="" x="-59" type="Generic" uuid="{68abef87-4015-49da-b41b-f2fb3906fc43}" orientation="s" y="49"/>
<terminal name="" x="49" type="Generic" uuid="{7b991b2c-8f1e-4c3c-b28b-16a483cb2dcf}" orientation="n" y="-37"/>
<terminal name="" x="-65" type="Generic" uuid="{e22fe61a-7d57-4940-b51b-08253d0eead0}" orientation="s" y="49"/>
<terminal name="" x="-5" type="Generic" uuid="{cd3afa98-28d7-48dc-a4ba-17cca1536c0d}" orientation="n" y="-37"/>
<terminal name="" x="-59" type="Generic" uuid="{42e4a2ba-8233-4367-bdb1-05fb0c1143fc}" orientation="n" y="-37"/>
</description>
</definition>
@@ -0,0 +1,342 @@
<definition width="190" type="element" version="0.90" height="110" hotspot_y="48" link_type="master" hotspot_x="97">
<uuid uuid="{1f519afc-db18-4f7f-ad04-1f2a007af2ef}"/>
<names>
<name lang="en">Miniserver Gen.1 digitale Eingänge</name>
<name lang="fr">Miniserver Gen.1 digitale Eingänge</name>
</names>
<kindInformations>
<kindInformation name="type">coil</kindInformation>
</kindInformations>
<elementInformations>
<elementInformation name="plant" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1">Loxone</elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
<elementInformation name="description" show="1">Miniserver Gen.1</elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
<elementInformation name="designation" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
</elementInformations>
<informations>&#xd;
Author: DXF converter&#xd;
License:see http://qelectrotech.org/wiki/doc/elements_license&#xd;
Converter version:V3.0 DB&#xd;
&#xd;
</informations>
<description>
<text rotation="0" x="-87" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-17.248" text="LAN"/>
<polygon x1="90" x2="54" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="46" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="58" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<text rotation="270" x="-51.7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="GND"/>
<text rotation="0" x="-48.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I2"/>
<text rotation="0" x="22.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI4"/>
<text rotation="270" x="14" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<text rotation="270" x="32.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<text rotation="0" x="40" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ2"/>
<text rotation="270" x="50.2" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<text rotation="0" x="59" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ4"/>
<text rotation="0" x="-36.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I4"/>
<polygon x1="-90" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<text rotation="0" x="-43" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I3"/>
<text rotation="270" x="-84" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" y="-30" text="IP"/>
<text rotation="0" x="-30.7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I5"/>
<text rotation="0" x="45" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q8&#xa;"/>
<text rotation="0" x="-90" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="26" text="KNX/EIB&#xa;Bus"/>
<text rotation="270" x="-80" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="44" text="EIB+"/>
<text rotation="270" x="-85.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="EIB-"/>
<text rotation="0" x="-54.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I1"/>
<text rotation="270" x="-57.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-21.7" text="24V+"/>
<text rotation="0" x="-12.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I8"/>
<polygon x1="90" x2="64" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="-90" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="64" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-62" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="54" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-80" x2="-83" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-21.136"/>
<text rotation="0" x="-17.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I7"/>
<polygon x1="58" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="64" x2="64" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="46" x2="46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-78" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="53" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ3"/>
<polygon x1="40" x2="46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-78" x2="-80" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-22.252" closed="false" antialias="false" y2="-21.136"/>
<polygon x1="58" x2="64" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="52" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-78" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="4.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI2"/>
<polygon x1="54" x2="54" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="-24.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I6"/>
<polygon x1="40" x2="34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<text rotation="0" x="-1.5" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI1"/>
<text rotation="0" x="34" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ1"/>
<polygon x1="48" x2="54" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<text rotation="0" x="-49" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="26.2" text="Loxone&#xa;Link"/>
<polygon x1="-88" x2="-85" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-21.136"/>
<polygon x1="-84" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="52" x2="46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-90" x2="-88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-22.252" closed="false" antialias="false" y2="-21.136"/>
<polygon x1="-90" x2="-90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="42" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<text rotation="0" x="16.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI3"/>
<text rotation="270" x="-4" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<polygon x1="40" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="52" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-83" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-20.056"/>
<polygon x1="46" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="48" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="-3" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q3"/>
<polygon x1="34" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-84" x2="-90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="48" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="-26" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q1"/>
<polygon x1="-84" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-85" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-20.056"/>
<polygon x1="42" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-90" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="52" x2="49" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-80" x2="-83" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="-15" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q2"/>
<polygon x1="-78" x2="-80" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="34.228" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q4"/>
<polygon x1="54" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-88" x2="-85" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="21" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q5"/>
<polygon x1="44" x2="47" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-90" x2="-88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="34.228" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="33" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q7"/>
<polygon x1="42" x2="44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-83" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="31.996"/>
<polygon x1="49" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<text rotation="270" x="-46" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="LOX+"/>
<text rotation="270" x="-57.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="GND"/>
<polygon x1="47" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-85" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="31.996"/>
<text rotation="270" x="-40" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="LOX-"/>
<polygon x1="-30" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<text rotation="270" x="-63.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="24V+"/>
<text rotation="0" x="-17" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" y="30.7" text="Digital Outputs (Relays) max 5A"/>
<polygon x1="-50" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-38" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-14" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-38" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-26" x2="-32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-38" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-44" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="30" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-14" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-56" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="6" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-18" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-38" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-6" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="42" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-26" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="18" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-50" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-32" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="22" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="18" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="30" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="42" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-20" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-18" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-6" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="6" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-26" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="36" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-38" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-56" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="34" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="12" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-24" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-12" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="0" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="24" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-68" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-6" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-20" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="18" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="6" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="10" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="30" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-32" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-56" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-44" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-18" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-56" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-30" x2="-30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-74" x2="-74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="24" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-24" x2="-30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="36" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-68" x2="-74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-50" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="12" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-32" x2="-32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="0" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-12" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-20" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-44" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-68" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="12" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-26" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-38" x2="-32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="24" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="22" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="0" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-12" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-24" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="36" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-56" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="6" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-74" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-30" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="18" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="10" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="30" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-6" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-56" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-18" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="34" x2="34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="28" x2="25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-20" x2="-23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="40" x2="37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-62" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="16" x2="13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="4" x2="1" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-8" x2="-11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="6" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="28" x2="34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-18" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-6" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<dynamic_text rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="-112" Halignment="AlignRight" uuid="{54b619d5-111f-4cb0-a758-b177501d33d1}" text_width="-1" z="201" keep_visual_rotation="true" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal" y="-37.7">
<text></text>
<info_name>formula</info_name>
</dynamic_text>
<polygon x1="42" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="18" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="30" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="16" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="32" x2="35" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-4" x2="-1" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-16" x2="-13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-28" x2="-25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="20" x2="23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="8" x2="11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-18" x2="-16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="18" x2="20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="30" x2="32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="6" x2="8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-30" x2="-28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="4" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-6" x2="-4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-11" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-2" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="1" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-23" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="13" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="25" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="37" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="22" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="23" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="35" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="11" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-25" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-1" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-13" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="10" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-2" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-2" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="28" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="16" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-8" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="4" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="28" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="16" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-14" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="4" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-2" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="22" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-8" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="10" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-8" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-14" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-76.25" x2="-76.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-64.37" x2="-76.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-64.37" x2="-64.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-76.25" x2="-64.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-90.58" x2="-90.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-78.69" x2="-90.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-78.69" x2="-78.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-90.58" x2="-78.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-94" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="17.2" closed="false" antialias="false" y2="17.2"/>
<polygon x1="-95" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-9.8" closed="false" antialias="false" y2="-9.8"/>
<polygon x1="-93" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.2" closed="false" antialias="false" y2="10"/>
<polygon x1="-93" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-92.97" x2="-92.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="8.2"/>
<polygon x1="-95" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-95" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="10" closed="false" antialias="false" y2="47.8"/>
<polygon x1="88" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.2" closed="false" antialias="false" y2="10"/>
<polygon x1="88" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="88" x2="88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="8.2"/>
<polygon x1="90" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-74" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="90" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="10" closed="false" antialias="false" y2="47.8"/>
<polygon x1="-40.37" x2="-43.18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-38.51" x2="-40.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-43.18" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-47.75" x2="-45.05" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-49.72" x2="-47.75" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-43.18" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-45.05" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-61.03" x2="-61.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-52.26" x2="-61.03" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-50.34" x2="-52.26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-62.9" x2="-61.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-71.47" x2="-62.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-73.65" x2="-71.47" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.769" closed="false" antialias="false" y2="32.509"/>
<text rotation="270" x="-70" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="24V+"/>
<text rotation="0" x="-67" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="28.9" text="Power"/>
<text rotation="0" x="-20" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-0.8" text="Loxone"/>
<dynamic_text rotation="270" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="-63" Halignment="AlignLeft" uuid="{1c2198c8-05e6-4b4c-a7a4-e0fe74799646}" text_width="-1" z="287" keep_visual_rotation="true" font="Sans Serif,3,-1,5,0,0,0,0,0,0,normal" y="-45.8">
<text></text>
</dynamic_text>
<dynamic_text rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="121" Halignment="AlignLeft" uuid="{73dc16bb-db42-499b-bab2-29fc4fe4903e}" text_width="-1" z="288" keep_visual_rotation="true" font="Sans Serif,4,-1,5,0,0,0,0,0,0,normal" y="-150">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text rotation="0" x="-27" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="16.3" text="Miniserver Gen.1"/>
<rect width="12" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-90" ry="0" antialias="false" height="20" rx="0" y="-44"/>
<terminal name="" x="-87" type="Generic" uuid="{eae84803-cf0f-4811-bd8f-c3cdb8dbb754}" orientation="s" y="49"/>
<terminal name="" x="-59" type="Generic" uuid="{0febf750-067a-4c91-9ace-325d3ba116a3}" orientation="s" y="49"/>
<terminal name="" x="13" type="Generic" uuid="{689f328d-964b-4005-ba3c-996b08152db6}" orientation="n" y="-37"/>
<terminal name="" x="-53" type="Generic" uuid="{ab9d3276-f613-41fb-9c46-9f2e5a5b2e31}" orientation="s" y="49"/>
<terminal name="" x="-65" type="Generic" uuid="{c76524d8-a675-40d4-95f5-0211c06aaccb}" orientation="s" y="49"/>
<terminal name="" x="-81" type="Generic" uuid="{9a317ef7-adf9-479e-88d5-93dd180a987f}" orientation="s" y="49"/>
<terminal name="" x="-41" type="Generic" uuid="{598299b8-5592-469e-b95b-8ef2f071c6c5}" orientation="s" y="49"/>
<terminal name="" x="-5" type="Generic" uuid="{918c5172-9985-4dac-93ce-0e4da9d9e946}" orientation="n" y="-37"/>
<terminal name="" x="-59" type="Generic" uuid="{23062542-bf44-4510-9292-64a5d67865a7}" orientation="n" y="-37"/>
<terminal name="" x="31" type="Generic" uuid="{8698e537-840f-4a28-b8a3-07a13ef33888}" orientation="n" y="-37"/>
<terminal name="" x="-71" type="Generic" uuid="{11e6467f-09e2-4e72-ba97-9dbf370090ab}" orientation="s" y="49"/>
<terminal name="" x="-47" type="Generic" uuid="{a55bd590-fc0f-4052-9d62-ba3f35054cec}" orientation="s" y="49"/>
<terminal name="" x="49" type="Generic" uuid="{6a2e1da4-eb96-4237-a1d6-0660963610bd}" orientation="n" y="-37"/>
</description>
</definition>
@@ -0,0 +1,346 @@
<definition width="190" type="element" version="0.90" height="110" hotspot_y="48" link_type="master" hotspot_x="97">
<uuid uuid="{257fc4af-cbca-4523-a66a-434ef031dc7d}"/>
<names>
<name lang="en">Miniserver Gen.1 analoge Ausgänge</name>
<name lang="de">Miniserver Gen.1 analoge Ausgänge</name>
</names>
<kindInformations>
<kindInformation name="type">coil</kindInformation>
</kindInformations>
<elementInformations>
<elementInformation name="plant" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1">Loxone</elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
<elementInformation name="description" show="1">Miniserver Gen.1</elementInformation>
<elementInformation name="designation" show="1"></elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
</elementInformations>
<informations>&#xd;
Author: DXF converter&#xd;
License:see http://qelectrotech.org/wiki/doc/elements_license&#xd;
Converter version:V3.0 DB&#xd;
&#xd;
</informations>
<description>
<text rotation="0" x="-87" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-17.248" text="LAN"/>
<polygon x1="90" x2="54" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="46" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="58" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<text rotation="270" x="-51.7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="GND"/>
<text rotation="0" x="-48.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I2"/>
<text rotation="0" x="22.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI4"/>
<text rotation="270" x="14" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<text rotation="270" x="32.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<text rotation="0" x="40" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ2"/>
<text rotation="270" x="50.2" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<text rotation="0" x="59" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ4"/>
<text rotation="0" x="-36.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I4"/>
<polygon x1="-90" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<text rotation="0" x="-43" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I3"/>
<text rotation="270" x="-84" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" y="-30" text="IP"/>
<text rotation="0" x="-30.7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I5"/>
<text rotation="0" x="45" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q8&#xa;"/>
<text rotation="0" x="-90" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="26" text="KNX/EIB&#xa;Bus"/>
<text rotation="270" x="-80" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="44" text="EIB+"/>
<text rotation="270" x="-85.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="EIB-"/>
<text rotation="0" x="-54.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I1"/>
<text rotation="270" x="-57.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-21.7" text="24V+"/>
<text rotation="0" x="-12.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I8"/>
<polygon x1="90" x2="64" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="-90" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="64" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-62" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="54" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-80" x2="-83" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-21.136"/>
<text rotation="0" x="-17.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I7"/>
<polygon x1="58" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="64" x2="64" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="46" x2="46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-78" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="53" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ3"/>
<polygon x1="40" x2="46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-78" x2="-80" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-22.252" closed="false" antialias="false" y2="-21.136"/>
<polygon x1="58" x2="64" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="52" x2="58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-78" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="4.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI2"/>
<polygon x1="54" x2="54" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="-24.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="I6"/>
<polygon x1="40" x2="34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<text rotation="0" x="-1.5" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI1"/>
<text rotation="0" x="34" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-27" text="AQ1"/>
<polygon x1="48" x2="54" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<text rotation="0" x="-49" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="26.2" text="Loxone&#xa;Link"/>
<polygon x1="-88" x2="-85" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-21.136"/>
<polygon x1="-84" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="52" x2="46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-90" x2="-88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-22.252" closed="false" antialias="false" y2="-21.136"/>
<polygon x1="-90" x2="-90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="42" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<text rotation="0" x="16.6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-26.7" text="AI3"/>
<text rotation="270" x="-4" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-23" text="GND"/>
<polygon x1="40" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="52" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-83" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-20.056"/>
<polygon x1="46" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="48" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="-3" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q3"/>
<polygon x1="34" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-84" x2="-90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="48" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<text rotation="0" x="-26" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q1"/>
<polygon x1="-84" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-85" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.136" closed="false" antialias="false" y2="-20.056"/>
<polygon x1="42" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-90" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="52" x2="49" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-80" x2="-83" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="-15" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q2"/>
<polygon x1="-78" x2="-80" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="34.228" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q4"/>
<polygon x1="54" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-88" x2="-85" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="21" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q5"/>
<polygon x1="44" x2="47" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-90" x2="-88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="34.228" closed="false" antialias="false" y2="33.112"/>
<text rotation="0" x="33" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q7"/>
<polygon x1="42" x2="44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-83" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="31.996"/>
<polygon x1="49" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<text rotation="270" x="-46" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="LOX+"/>
<text rotation="270" x="-57.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="GND"/>
<polygon x1="47" x2="48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-85" x2="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.112" closed="false" antialias="false" y2="31.996"/>
<text rotation="270" x="-40" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="LOX-"/>
<polygon x1="-30" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<text rotation="270" x="-63.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="24V+"/>
<text rotation="0" x="-17" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" y="30.7" text="Digital Outputs (Relays) max 5A"/>
<polygon x1="-50" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-38" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-14" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-38" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-26" x2="-32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-38" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-44" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="30" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-14" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-56" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="6" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-18" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-38" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-6" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="42" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-26" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="18" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-50" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-32" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="22" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="18" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="30" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="42" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-20" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-18" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-6" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="6" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-26" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="36" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-38" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-56" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="34" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="12" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-24" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-12" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="0" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="24" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-68" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-6" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-20" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="18" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="6" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="10" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="30" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-32" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-56" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-44" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-18" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-56" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-30" x2="-30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-74" x2="-74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="24" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-24" x2="-30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="36" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-68" x2="-74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-50" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="12" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-32" x2="-32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="0" x2="-6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-12" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-20" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-44" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-68" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="12" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-26" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-38" x2="-32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="24" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="22" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="0" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-12" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-24" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="36" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-56" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="6" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-74" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-30" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="18" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="10" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="30" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-6" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-56" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-18" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="34" x2="34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="28" x2="25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-20" x2="-23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="40" x2="37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-62" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="16" x2="13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="4" x2="1" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-8" x2="-11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="6" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="28" x2="34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-18" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-6" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<dynamic_text rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="-112" Halignment="AlignRight" uuid="{54b619d5-111f-4cb0-a758-b177501d33d1}" text_width="-1" z="201" keep_visual_rotation="true" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal" y="-37.7">
<text></text>
<info_name>formula</info_name>
</dynamic_text>
<polygon x1="42" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="18" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="30" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="16" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="32" x2="35" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-4" x2="-1" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-16" x2="-13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-28" x2="-25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="20" x2="23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="8" x2="11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-18" x2="-16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="18" x2="20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="30" x2="32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="6" x2="8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-30" x2="-28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="4" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-6" x2="-4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-11" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-2" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="1" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-23" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="13" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="25" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="37" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="22" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="23" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="35" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="11" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-25" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-1" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-13" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="10" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-2" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-2" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="28" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="16" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-8" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="4" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="28" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="16" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-14" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="4" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-2" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="22" x2="28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-8" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="10" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-8" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-14" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-76.25" x2="-76.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-64.37" x2="-76.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-64.37" x2="-64.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-76.25" x2="-64.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-90.58" x2="-90.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-78.69" x2="-90.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-78.69" x2="-78.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-90.58" x2="-78.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-94" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="17.2" closed="false" antialias="false" y2="17.2"/>
<polygon x1="-95" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-9.8" closed="false" antialias="false" y2="-9.8"/>
<polygon x1="-93" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.2" closed="false" antialias="false" y2="10"/>
<polygon x1="-93" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-92.97" x2="-92.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="8.2"/>
<polygon x1="-95" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-95" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="10" closed="false" antialias="false" y2="47.8"/>
<polygon x1="88" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.2" closed="false" antialias="false" y2="10"/>
<polygon x1="88" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="88" x2="88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="8.2"/>
<polygon x1="90" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-74" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="90" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="10" closed="false" antialias="false" y2="47.8"/>
<polygon x1="-40.37" x2="-43.18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-38.51" x2="-40.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-43.18" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-47.75" x2="-45.05" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-49.72" x2="-47.75" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-43.18" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-45.05" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-61.03" x2="-61.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-52.26" x2="-61.03" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-50.34" x2="-52.26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-62.9" x2="-61.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-71.47" x2="-62.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-73.65" x2="-71.47" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.769" closed="false" antialias="false" y2="32.509"/>
<text rotation="270" x="-70" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="24V+"/>
<text rotation="0" x="-67" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="28.9" text="Power"/>
<text rotation="0" x="-20" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-0.8" text="Loxone"/>
<dynamic_text rotation="270" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="-63" Halignment="AlignLeft" uuid="{1c2198c8-05e6-4b4c-a7a4-e0fe74799646}" text_width="-1" z="287" keep_visual_rotation="true" font="Sans Serif,3,-1,5,0,0,0,0,0,0,normal" y="-45.8">
<text></text>
</dynamic_text>
<text rotation="0" x="-27" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="16.3" text="Miniserver Gen.1"/>
<dynamic_text rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="120" Halignment="AlignLeft" uuid="{73dc16bb-db42-499b-bab2-29fc4fe4903e}" text_width="-1" z="288" keep_visual_rotation="true" font="Sans Serif,4,-1,5,0,0,0,0,0,0,normal" y="55">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<dynamic_text rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="120" Halignment="AlignLeft" uuid="{73dc16bb-db42-499b-bab2-29fc4fe4903e}" text_width="-1" z="288" keep_visual_rotation="true" font="Sans Serif,4,-1,5,0,0,0,0,0,0,normal" y="115">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect width="12" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-90" ry="0" antialias="false" height="20" rx="0" y="-44"/>
<terminal name="" x="-5" type="Generic" uuid="{4b7c8b80-535f-41c0-889b-42a5fccfec20}" orientation="n" y="-37"/>
<terminal name="" x="-53" type="Generic" uuid="{42863f6f-993b-4e4e-b68a-66daab5421f3}" orientation="s" y="49"/>
<terminal name="" x="-59" type="Generic" uuid="{aea1a8c8-0029-4ca3-ab7f-d578af40ad3e}" orientation="s" y="49"/>
<terminal name="" x="-87" type="Generic" uuid="{245e8b27-4b8e-4402-beb7-1f76ee222baf}" orientation="s" y="49"/>
<terminal name="" x="-81" type="Generic" uuid="{f5a8f460-5b88-4d8e-a050-e5f6a71df2db}" orientation="s" y="49"/>
<terminal name="" x="31" type="Generic" uuid="{750fa2d1-34dd-4a2e-a853-677ff27d2850}" orientation="n" y="-37"/>
<terminal name="" x="13" type="Generic" uuid="{6239b59e-eed1-4cec-801a-2aa1b61827a6}" orientation="n" y="-37"/>
<terminal name="" x="-41" type="Generic" uuid="{557e0891-48c2-4d9d-952a-9f6234cdb703}" orientation="s" y="49"/>
<terminal name="" x="-71" type="Generic" uuid="{8d94b0a2-d6fb-4b20-ae37-80de940c5f8a}" orientation="s" y="49"/>
<terminal name="" x="-65" type="Generic" uuid="{e0d3692b-a083-4036-8190-5d4a35661541}" orientation="s" y="49"/>
<terminal name="" x="-59" type="Generic" uuid="{7705bd98-1a00-4a31-98eb-76ad6963ed42}" orientation="n" y="-37"/>
<terminal name="" x="-47" type="Generic" uuid="{c14f4f0f-9aca-4e5f-900b-4621e4ed2a08}" orientation="s" y="49"/>
<terminal name="" x="49" type="Generic" uuid="{35b361f4-f8a3-4d58-a183-a0104a307412}" orientation="n" y="-37"/>
</description>
</definition>
@@ -0,0 +1,5 @@
<qet-directory>
<names>
<name lang="de">Loxone Miniserver Gen.1</name>
</names>
</qet-directory>
@@ -0,0 +1,33 @@
<definition orientation="dyyy" height="80" width="90" link_type="slave" hotspot_x="45" version="0.70" type="element" hotspot_y="39">
<uuid uuid="{17b79d42-eb71-4c0d-9b0c-f0bdd04885da}"/>
<names>
<name lang="de">Loxone Relay Ausgang </name>
</names>
<kindInformations>
<kindInformation name="number" show="1">1</kindInformation>
<kindInformation name="state" show="1">NO</kindInformation>
<kindInformation name="type" show="1">simple</kindInformation>
</kindInformations>
<informations></informations>
<description>
<dynamic_text Valignment="AlignTop" y="-4" text_from="ElementInfo" font="Sans Serif,5,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" x="-37" z="1" text_width="-1" uuid="{824f9521-d87d-412b-84c9-dd1d5af5df4c}" frame="false" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<circle diameter="5" y="-32.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-2.5" antialias="false"/>
<polygon x1="-40" x3="-3" x2="-40" y3="-30" closed="false" y1="-30" y2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x1="3" x3="40" x2="3" y3="-30" closed="false" y1="-30" y2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<circle diameter="5" y="27.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-2.5" antialias="false"/>
<polygon x1="-40" x3="-3" x2="-40" y3="30" closed="false" y1="-30" y2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon x1="3" x3="40" x2="40" y3="-30" closed="false" y1="30" y2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<line x1="-15" x2="-5" y1="-13" y2="-13" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length2="1.5" antialias="false"/>
<line x1="-5" x2="5" y1="-13" y2="-18" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length2="1.5" antialias="false"/>
<line x1="5" x2="15" y1="-13" y2="-13" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length2="1.5" antialias="false"/>
<text color="#000000" y="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="0" text="Loxone&#xa;Relay" rotation="0"/>
<dynamic_text Valignment="AlignTop" y="5" text_from="UserText" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal" Halignment="AlignLeft" x="0" z="13" text_width="-1" uuid="{b29e095c-a984-4597-a674-b5d1afb0c91e}" frame="false" rotation="0">
<text>Q1</text>
</dynamic_text>
<terminal orientation="n" y="-31" x="0"/>
<terminal orientation="s" y="31" x="0"/>
</description>
</definition>
@@ -0,0 +1,332 @@
<definition width="190" type="element" version="0.90" height="110" hotspot_y="48" link_type="master" hotspot_x="97">
<uuid uuid="{bbb55835-3f1d-488a-b6b9-95633c6e06ab}"/>
<names>
<name lang="en">relay extension</name>
<name lang="fr">relay extension</name>
</names>
<kindInformations>
<kindInformation name="type">coil</kindInformation>
</kindInformations>
<elementInformations>
<elementInformation name="plant" show="1"></elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1">Loxone</elementInformation>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
<elementInformation name="description" show="1">Relay Extension</elementInformation>
<elementInformation name="designation" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
</elementInformations>
<informations>&#xd;
Author: DXF converter&#xd;
License:see http://qelectrotech.org/wiki/doc/elements_license&#xd;
Converter version:V3.0 DB&#xd;
&#xd;
</informations>
<description>
<text rotation="270" x="-51.7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="GND"/>
<polygon x1="-83" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="90" x2="69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<text rotation="0" x="-49" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="26.2" text="Loxone&#xa;Link"/>
<polygon x1="-10" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<text rotation="0" x="13" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q11"/>
<text rotation="0" x="-26" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q9"/>
<polygon x1="30" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<text rotation="0" x="-7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q10"/>
<text rotation="0" x="33" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q12"/>
<text rotation="0" x="53" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q13"/>
<text rotation="0" x="73" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="39.7" text="Q14"/>
<text rotation="270" x="-46" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="LOX+"/>
<text rotation="270" x="-57.8" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="GND"/>
<text rotation="270" x="-40" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="LOX-"/>
<polygon x1="-30" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<text rotation="270" x="-63.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="24V+"/>
<text rotation="0" x="-79" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-25.1" text="Q1"/>
<text rotation="0" x="-59" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-25.1" text="Q2"/>
<text rotation="0" x="-39" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-25.1" text="Q3"/>
<text rotation="0" x="-19" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-25.1" text="Q4"/>
<text rotation="0" x="1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-25.1" text="Q5"/>
<text rotation="0" x="41" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-25.1" text="Q7"/>
<text rotation="0" x="21" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-25.1" text="Q6"/>
<text rotation="0" x="-3" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" y="30.7" text="Digital Outputs (Relays) max 16A"/>
<text rotation="0" x="61" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="-25.1" text="Q8"/>
<polygon x1="10" x2="2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="-3" x2="-11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="-43" x2="-51" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="-23" x2="-31" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="50" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="70" x2="62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="-50" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-38" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-11" x2="-17" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="30" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="-10" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="90" x2="82" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="10" x2="2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="-51" x2="-57" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="50" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="-31" x2="-37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="37" x2="29" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="70" x2="62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="-63" x2="-71" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="-38" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-44" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="62" x2="56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-11" x2="-11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-56" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="22" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-18" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-51" x2="-51" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="2" x2="-4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="57" x2="49" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="82" x2="76" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-31" x2="-31" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="42" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-50" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-57" x2="-51" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-71" x2="-77" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-37" x2="-31" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="49" x2="43" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="42" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="62" x2="62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="82" x2="82" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-17" x2="-11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-18" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="2" x2="2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="22" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-63" x2="-63" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-23" x2="-23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="76" x2="82" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-43" x2="-43" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="-56" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-71" x2="-71" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="69" x2="63" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="36" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-24" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-4" x2="2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="16" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="56" x2="62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-68" x2="-62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="10" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-17" x2="-23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="50" x2="50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="30" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="29" x2="23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="70" x2="70" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-37" x2="-43" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-56" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-57" x2="-63" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-10" x2="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-44" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-77" x2="-71" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-30" x2="-30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-74" x2="-74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="44.2"/>
<polygon x1="56" x2="50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-24" x2="-30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="76" x2="70" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-68" x2="-74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-83" x2="-83" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="17" x2="9" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-40.4"/>
<polygon x1="-50" x2="-44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="36" x2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-62" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-37" x2="-37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="16" x2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-4" x2="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="56.8" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-17" x2="-17" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-57" x2="-57" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-68" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="36" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-23" x2="-17" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-43" x2="-37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="56" x2="56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="49" x2="49" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="16" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-63" x2="-57" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-4" x2="-4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-24" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="76" x2="76" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="56.8"/>
<polygon x1="-77" x2="-83" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-53" x2="-56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="-13" x2="-16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="30" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-74" x2="-68" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-30" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="50" x2="56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="29" x2="29" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="70" x2="76" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="10" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="-33" x2="-36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="-77" x2="-77" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-10" x2="-4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="44.2" closed="false" antialias="false" y2="44.2"/>
<polygon x1="69" x2="69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="60" x2="57" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-20" x2="-23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="80" x2="77" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-11" x2="-13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="-51" x2="-53" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="-83" x2="-77" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="40" x2="37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="20" x2="17" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="0" x2="-3" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-31" x2="-33" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="-41" x2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="22" x2="20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-21" x2="-18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="63" x2="69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-18" x2="-20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="2" x2="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="82" x2="80" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-61" x2="-58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="42" x2="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="62" x2="60" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="43" x2="49" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="-23" x2="-21" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="72" x2="75" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-63" x2="-61" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="12" x2="15" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-8" x2="-5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-28" x2="-25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-43" x2="-41" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="52" x2="55" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="32" x2="35" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-10" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="50" x2="52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-36" x2="-37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="70" x2="72" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-56" x2="-57" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="30" x2="32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-30" x2="-28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="23" x2="29" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="10" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="43.228" closed="false" antialias="false" y2="42.112"/>
<polygon x1="-16" x2="-17" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="-3" x2="-4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-58" x2="-57" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="-18" x2="-17" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="9" x2="3" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="17" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-38" x2="-37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="-23" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="37" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="57" x2="56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="77" x2="76" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="57" x2="57" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="55" x2="56" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="75" x2="76" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="35" x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-25" x2="-24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="15" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="-5" x2="-4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="42.112" closed="false" antialias="false" y2="40.996"/>
<polygon x1="37" x2="37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="9" x2="9" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<dynamic_text rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="-112" Halignment="AlignRight" uuid="{54b619d5-111f-4cb0-a758-b177501d33d1}" text_width="-1" z="201" keep_visual_rotation="true" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal" y="-37.7">
<text></text>
<info_name>formula</info_name>
</dynamic_text>
<polygon x1="17" x2="17" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="63" x2="57" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="43" x2="37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="3" x2="9" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="23" x2="17" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="63" x2="63" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="43" x2="43" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="-3" x2="-3" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-44"/>
<polygon x1="23" x2="23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="17" x2="23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="57" x2="63" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="3" x2="-3" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-31.4" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="37" x2="43" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="27" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="67" x2="64" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="3" x2="3" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-31.4"/>
<polygon x1="47" x2="44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="29" x2="27" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="-3" x2="3" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-44" closed="false" antialias="false" y2="-44"/>
<polygon x1="49" x2="47" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="69" x2="67" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="59" x2="62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="19" x2="22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="39" x2="42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="37" x2="39" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="57" x2="59" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="17" x2="19" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="44" x2="43" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="64" x2="63" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="24" x2="23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="42" x2="43" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="62" x2="63" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="22" x2="23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="7" x2="4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="9" x2="7" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="-1" x2="2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="-3" x2="-1" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="4" x2="3" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="2" x2="3" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="-76.25" x2="-76.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-64.37" x2="-76.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-64.37" x2="-64.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-76.25" x2="-64.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-90.58" x2="-90.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-78.69" x2="-90.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.665" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-78.69" x2="-78.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="2.665"/>
<polygon x1="-90.58" x2="-78.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="4.762" closed="false" antialias="false" y2="4.762"/>
<polygon x1="-94" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="17.2" closed="false" antialias="false" y2="17.2"/>
<polygon x1="-95" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-9.8" closed="false" antialias="false" y2="-9.8"/>
<polygon x1="-93" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.2" closed="false" antialias="false" y2="10"/>
<polygon x1="-93" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-92.97" x2="-92.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="8.2"/>
<polygon x1="-95" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-95" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="10" closed="false" antialias="false" y2="47.8"/>
<polygon x1="88" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.2" closed="false" antialias="false" y2="10"/>
<polygon x1="88" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="88" x2="88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.7" closed="false" antialias="false" y2="8.2"/>
<polygon x1="90" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-40.4" closed="false" antialias="false" y2="-3.5"/>
<polygon x1="-74" x2="-95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="47.8" closed="false" antialias="false" y2="47.8"/>
<polygon x1="90" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="10" closed="false" antialias="false" y2="47.8"/>
<polygon x1="-40.37" x2="-43.18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-38.51" x2="-40.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-43.18" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-47.75" x2="-45.05" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-49.72" x2="-47.75" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-43.18" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-45.05" x2="-44.11" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-61.03" x2="-61.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-52.26" x2="-61.03" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-50.34" x2="-52.26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.589" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-62.9" x2="-61.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="31.384"/>
<polygon x1="-71.47" x2="-62.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="32.509" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-73.65" x2="-71.47" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="33.769" closed="false" antialias="false" y2="32.509"/>
<polygon x1="-73" x2="-76" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="-71" x2="-73" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="-81" x2="-78" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="-83" x2="-81" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-30.104" closed="false" antialias="false" y2="-28.988"/>
<polygon x1="-76" x2="-77" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<polygon x1="-78" x2="-77" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.988" closed="false" antialias="false" y2="-27.908"/>
<text rotation="270" x="-70" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="43.3" text="24V+"/>
<text rotation="0" x="-67" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="28.9" text="Power"/>
<text rotation="0" x="-34" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" y="-17" text="Digital Outputs (Relays) max 16A"/>
<text rotation="0" x="-20" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-0.8" text="Loxone"/>
<text rotation="0" x="-9" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="16.3" text="Relay"/>
<dynamic_text rotation="270" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="-84" Halignment="AlignLeft" uuid="{1c2198c8-05e6-4b4c-a7a4-e0fe74799646}" text_width="-1" z="287" keep_visual_rotation="true" font="Sans Serif,3,-1,5,0,0,0,0,0,0,normal" y="-45.8">
<text></text>
</dynamic_text>
<dynamic_text rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="120" Halignment="AlignLeft" uuid="{73dc16bb-db42-499b-bab2-29fc4fe4903e}" text_width="-1" z="288" keep_visual_rotation="true" font="Sans Serif,4,-1,5,0,0,0,0,0,0,normal" y="-41">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal name="" x="-65" type="Generic" uuid="{51dd6b6f-d755-4654-be48-156313f00f69}" orientation="s" y="49.6"/>
<terminal name="" x="-47" type="Generic" uuid="{de825e30-991b-437d-bdd2-6e67b9f3d1ed}" orientation="s" y="49.6"/>
<terminal name="" x="-71" type="Generic" uuid="{c0ac6345-e4ad-4beb-9d10-5be506e3d69f}" orientation="s" y="49.6"/>
<terminal name="" x="-41" type="Generic" uuid="{2443b9ce-f62e-48ae-9141-0b5d8adfefdc}" orientation="s" y="49.6"/>
<terminal name="" x="-59" type="Generic" uuid="{31a811b9-ec64-44a9-94c2-c96f8ff5d32e}" orientation="s" y="49.6"/>
<terminal name="" x="-53" type="Generic" uuid="{e40e3b8c-2305-4ca0-b619-abae235533ad}" orientation="s" y="49.6"/>
</description>
</definition>
@@ -0,0 +1,33 @@
<definition version="0.70" type="element" hotspot_x="45" hotspot_y="39" height="80" link_type="slave" width="90" orientation="dyyy">
<uuid uuid="{e7856daf-4252-4d9a-aece-cef2a53d7c07}"/>
<names>
<name lang="de">Loxone Relay Ausgang </name>
</names>
<kindInformations>
<kindInformation name="type" show="1">simple</kindInformation>
<kindInformation name="number" show="1">1</kindInformation>
<kindInformation name="state" show="1">NO</kindInformation>
</kindInformations>
<informations></informations>
<description>
<dynamic_text z="1" uuid="{824f9521-d87d-412b-84c9-dd1d5af5df4c}" Valignment="AlignTop" y="-4" rotation="0" text_width="-1" x="-37" Halignment="AlignLeft" text_from="ElementInfo" frame="false" font="Sans Serif,5,-1,5,50,0,0,0,0,0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<circle y="-32.5" antialias="false" x="-2.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="5"/>
<polygon y1="-30" y3="-30" antialias="false" x2="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-30" x1="-40" closed="false" x3="-3"/>
<polygon y1="-30" y3="-30" antialias="false" x2="3" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-30" x1="3" closed="false" x3="40"/>
<circle y="27.5" antialias="false" x="-2.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="5"/>
<polygon y1="-30" y3="30" antialias="false" x2="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="30" x1="-40" closed="false" x3="-3"/>
<polygon y1="30" y3="-30" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="30" x1="3" closed="false" x3="40"/>
<line y1="-13" end2="none" antialias="false" x2="-5" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-13" length2="1.5" end1="none" x1="-15"/>
<line y1="-13" end2="none" antialias="false" x2="5" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-18" length2="1.5" end1="none" x1="-5"/>
<line y1="-13" end2="none" antialias="false" x2="15" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-13" length2="1.5" end1="none" x1="5"/>
<text text="Loxone&#xa;Relay" y="0" rotation="0" x="0" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<dynamic_text z="13" uuid="{b29e095c-a984-4597-a674-b5d1afb0c91e}" Valignment="AlignTop" y="5" rotation="0" text_width="-1" x="0" Halignment="AlignLeft" text_from="UserText" frame="false" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal">
<text>Q1</text>
</dynamic_text>
<terminal y="-31" x="0" orientation="n"/>
<terminal y="31" x="0" orientation="s"/>
</description>
</definition>
@@ -0,0 +1,5 @@
<qet-directory>
<names>
<name lang="de">Loxone Relay Extension-</name>
</names>
</qet-directory>
@@ -0,0 +1,89 @@
<definition width="60" type="element" version="0.90" height="80" hotspot_y="38" link_type="master" hotspot_x="30">
<uuid uuid="{b12d4c64-72fd-44ea-bb4f-a937838433a8}"/>
<names>
<name lang="en">Nano DI Tree</name>
</names>
<kindInformations>
<kindInformation name="type">coil</kindInformation>
</kindInformations>
<elementInformations>
<elementInformation name="plant" show="1"></elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1">Loxone</elementInformation>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
<elementInformation name="description" show="1">Tree Extension</elementInformation>
<elementInformation name="designation" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
</elementInformations>
<informations>&#xd;
Author: DXF converter&#xd;
License:see http://qelectrotech.org/wiki/doc/elements_license&#xd;
Converter version:V3.0 DB&#xd;
&#xd;
</informations>
<description>
<polygon x1="-14" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="29" closed="false" antialias="false" y2="29"/>
<polygon x1="26" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="28" closed="false" antialias="false" y2="28"/>
<polygon x1="6" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="29" closed="false" antialias="false" y2="29"/>
<polygon x1="-4.16" x2="-6.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="13.509" closed="false" antialias="false" y2="13.509"/>
<text rotation="0" x="7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="7.2" text="Loxone&#xa;Link"/>
<polygon x1="-2.3" x2="-4.16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="14.589" closed="false" antialias="false" y2="13.509"/>
<polygon x1="-6.97" x2="-7.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="13.509" closed="false" antialias="false" y2="12.384"/>
<polygon x1="-11.54" x2="-8.84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="13.509" closed="false" antialias="false" y2="13.509"/>
<polygon x1="-13.51" x2="-11.54" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="14.589" closed="false" antialias="false" y2="13.509"/>
<polygon x1="-6.97" x2="-7.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="13.509" closed="false" antialias="false" y2="12.384"/>
<polygon x1="-8.84" x2="-7.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="13.509" closed="false" antialias="false" y2="12.384"/>
<text rotation="270" x="10" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="24.3" text="LOX+"/>
<text rotation="270" x="16" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="24.3" text="LOX-"/>
<text rotation="270" x="-3.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="24.3" text="GND"/>
<polygon x1="18" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="37.8" closed="false" antialias="false" y2="37.8"/>
<polygon x1="6" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="25.2" closed="false" antialias="false" y2="37.8"/>
<polygon x1="18" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="25.2" closed="false" antialias="false" y2="37.8"/>
<polygon x1="12" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="25.2" closed="false" antialias="false" y2="25.2"/>
<polygon x1="-2" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="37.8" closed="false" antialias="false" y2="37.8"/>
<polygon x1="6" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="37.8" closed="false" antialias="false" y2="25.2"/>
<polygon x1="-2" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="37.8" closed="false" antialias="false" y2="25.2"/>
<polygon x1="-2" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="25.2" closed="false" antialias="false" y2="37.8"/>
<polygon x1="-8" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="25.2" closed="false" antialias="false" y2="25.2"/>
<polygon x1="12" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="37.8" closed="false" antialias="false" y2="37.8"/>
<polygon x1="12" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="25.2" closed="false" antialias="false" y2="37.8"/>
<polygon x1="-14" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="37.8" closed="false" antialias="false" y2="25.2"/>
<polygon x1="-8" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="37.8" closed="false" antialias="false" y2="37.8"/>
<polygon x1="6" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="25.2" closed="false" antialias="false" y2="25.2"/>
<polygon x1="-8" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="25.2" closed="false" antialias="false" y2="37.8"/>
<polygon x1="-14" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="25.2" closed="false" antialias="false" y2="25.2"/>
<polygon x1="-26" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-29" closed="false" antialias="false" y2="-29"/>
<polygon x1="-26" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-29" closed="false" antialias="false" y2="28.8"/>
<polygon x1="26" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-29" closed="false" antialias="false" y2="29"/>
<polygon x1="15.63" x2="12.82" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="13.509" closed="false" antialias="false" y2="13.509"/>
<polygon x1="17.49" x2="15.63" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="14.589" closed="false" antialias="false" y2="13.509"/>
<polygon x1="12.82" x2="11.89" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="13.509" closed="false" antialias="false" y2="12.384"/>
<polygon x1="8.25" x2="10.95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="13.509" closed="false" antialias="false" y2="13.509"/>
<polygon x1="6.28" x2="8.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="14.589" closed="false" antialias="false" y2="13.509"/>
<polygon x1="12.82" x2="11.89" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="13.509" closed="false" antialias="false" y2="12.384"/>
<polygon x1="10.95" x2="11.89" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="13.509" closed="false" antialias="false" y2="12.384"/>
<text rotation="270" x="-10" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="24.3" text="24V+"/>
<text rotation="0" x="-12" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" y="9.9" text="Power"/>
<text rotation="0" x="-19" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-19.8" text="Loxone"/>
<text rotation="0" x="-12" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-5.7" text="Nano DI&#xa;Tree"/>
<dynamic_text rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="-43" Halignment="AlignRight" uuid="{54b619d5-111f-4cb0-a758-b177501d33d1}" text_width="-1" z="201" keep_visual_rotation="true" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal" y="-27.7">
<text></text>
<info_name>formula</info_name>
</dynamic_text>
<dynamic_text rotation="270" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="-15" Halignment="AlignLeft" uuid="{1c2198c8-05e6-4b4c-a7a4-e0fe74799646}" text_width="-1" z="287" keep_visual_rotation="true" font="Sans Serif,3,-1,5,0,0,0,0,0,0,normal" y="-45.8">
<text></text>
</dynamic_text>
<dynamic_text rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" x="55" Halignment="AlignLeft" uuid="{73dc16bb-db42-499b-bab2-29fc4fe4903e}" text_width="-1" z="288" keep_visual_rotation="true" font="Sans Serif,4,-1,5,0,0,0,0,0,0,normal" y="-30">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal name="" x="-5" type="Generic" uuid="{f927964f-f9e2-428b-955c-1ec4957301b7}" orientation="s" y="30.6"/>
<terminal name="" x="-11" type="Generic" uuid="{16a54ab9-21c6-4498-a44c-a61a5f38a3c9}" orientation="s" y="30.6"/>
<terminal name="" x="15" type="Generic" uuid="{bda64d94-4f82-44d3-ab54-cd1108fc2247}" orientation="s" y="30.6"/>
<terminal name="" x="9" type="Generic" uuid="{cc2cff8d-76ea-4f9b-bd97-95d7ea47e7c5}" orientation="s" y="30.6"/>
</description>
</definition>
@@ -0,0 +1,31 @@
<definition orientation="dyyy" hotspot_y="36" type="element" version="0.70" width="90" hotspot_x="45" height="70" link_type="slave">
<uuid uuid="{be1bc50e-52af-435d-903f-f22556cfb2f5}"/>
<names>
<name lang="de">Nano DI Tree digitaler Eingang</name>
</names>
<kindInformations>
<kindInformation name="number" show="1">1</kindInformation>
<kindInformation name="state" show="1">NO</kindInformation>
<kindInformation name="type" show="1">simple</kindInformation>
</kindInformations>
<informations></informations>
<description>
<circle x="24.5" y="-32.5" diameter="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<dynamic_text z="1" x="-37" y="-4" font="Sans Serif,5,-1,5,50,0,0,0,0,0" uuid="{824f9521-d87d-412b-84c9-dd1d5af5df4c}" Halignment="AlignLeft" text_from="ElementInfo" Valignment="AlignTop" rotation="0" frame="false" text_width="-1">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon closed="false" x3="24" x1="14" x2="-25" y1="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="-30" y2="-30" antialias="false"/>
<circle x="-29.5" y="-32.5" diameter="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<polygon closed="false" x3="-30" x1="-40" x2="-40" y1="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="-30" y2="-30" antialias="false"/>
<polygon closed="false" x3="40" x1="30" x2="30" y1="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="-30" y2="-30" antialias="false"/>
<polygon closed="false" x3="-3" x1="-40" x2="-40" y1="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="30" y2="30" antialias="false"/>
<polygon closed="false" x3="40" x1="-5" x2="40" y1="30" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="-30" y2="30" antialias="false"/>
<text color="#000000" x="0" y="-7" text="Loxone&#xa;Nano DI&#xa;Tree&#xa;digitaler&#xa;Eingang" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0"/>
<dynamic_text z="13" x="-7" y="-29" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal" uuid="{b29e095c-a984-4597-a674-b5d1afb0c91e}" Halignment="AlignLeft" text_from="UserText" Valignment="AlignTop" rotation="0" frame="false" text_width="-1">
<text>I1</text>
</dynamic_text>
<terminal x="-27" y="-31" orientation="n"/>
<terminal x="27" y="-31" orientation="n"/>
</description>
</definition>
@@ -0,0 +1,5 @@
<qet-directory>
<names>
<name lang="de">Loxone</name>
</names>
</qet-directory>
@@ -0,0 +1,138 @@
<definition version="0.70" type="element" hotspot_x="30" hotspot_y="48" height="110" link_type="simple" width="60" orientation="dyyy">
<uuid uuid="{6a90b9a0-6435-4d3f-8ff2-a98d1ae0d680}"/>
<names>
<name lang="en">Tree Extension</name>
</names>
<elementInformations>
<elementInformation name="label" show="1"></elementInformation>
<elementInformation name="description" show="1">Tree Extension</elementInformation>
<elementInformation name="quantity" show="1"></elementInformation>
<elementInformation name="manufacturer" show="1">Loxone</elementInformation>
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
<elementInformation name="designation" show="1"></elementInformation>
<elementInformation name="unity" show="1"></elementInformation>
<elementInformation name="supplier" show="1"></elementInformation>
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
<elementInformation name="comment" show="1"></elementInformation>
<elementInformation name="plant" show="1"></elementInformation>
</elementInformations>
<informations>&#xd;
Author: DXF converter&#xd;
License:see http://qelectrotech.org/wiki/doc/elements_license&#xd;
Converter version:V3.0 DB&#xd;
&#xd;
</informations>
<description>
<polygon y1="48" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="48" x1="-14" closed="false"/>
<polygon y1="-40.4" antialias="false" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-40.4" x1="26" closed="false"/>
<polygon y1="48" antialias="false" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="48" x1="26" closed="false"/>
<polygon y1="48" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="48" x1="6" closed="false"/>
<text text="grün" y="-24" rotation="270" x="16.2" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="grün" y="-24" rotation="270" x="-3.7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="weiß" y="-24" rotation="270" x="10.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<polygon y1="-40.4" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-40.4" x1="-14" closed="false"/>
<polygon y1="32.509" antialias="false" x2="-6.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="-4.16" closed="false"/>
<text text="Loxone&#xa;Link" y="26.2" rotation="0" x="7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<polygon y1="33.589" antialias="false" x2="-4.16" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="-2.3" closed="false"/>
<polygon y1="32.509" antialias="false" x2="-7.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="-6.97" closed="false"/>
<polygon y1="32.509" antialias="false" x2="-8.84" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="-11.54" closed="false"/>
<polygon y1="33.589" antialias="false" x2="-11.54" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="-13.51" closed="false"/>
<polygon y1="32.509" antialias="false" x2="-7.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="-6.97" closed="false"/>
<polygon y1="32.509" antialias="false" x2="-7.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="-8.84" closed="false"/>
<text text="LOX+" y="43.3" rotation="270" x="10" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="LOX-" y="43.3" rotation="270" x="16" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="GND" y="43.3" rotation="270" x="-3.9" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="linker&#xa;Ast" y="-18" rotation="0" x="-12" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="rechter&#xa;Ast" y="-18.1" rotation="0" x="7" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<polygon y1="56.8" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="18" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="18" closed="false"/>
<polygon y1="44.2" antialias="false" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="6" closed="false"/>
<polygon y1="-40.4" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-40.4" x1="6" closed="false"/>
<polygon y1="44.2" antialias="false" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="18" closed="false"/>
<polygon y1="44.2" antialias="false" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="12" closed="false"/>
<polygon y1="56.8" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="-2" closed="false"/>
<polygon y1="-44" antialias="false" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="18" closed="false"/>
<polygon y1="56.8" antialias="false" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="6" closed="false"/>
<polygon y1="-44" antialias="false" x2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="12" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="-2" closed="false"/>
<polygon y1="56.8" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="-2" closed="false"/>
<polygon y1="44.2" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="-2" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="6" closed="false"/>
<polygon y1="-44" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="-2" closed="false"/>
<polygon y1="44.2" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="-8" closed="false"/>
<polygon y1="56.8" antialias="false" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="12" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="6" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="12" closed="false"/>
<polygon y1="44.2" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="12" closed="false"/>
<polygon y1="-44" antialias="false" x2="-2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="-8" closed="false"/>
<polygon y1="56.8" antialias="false" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="-14" closed="false"/>
<polygon y1="56.8" antialias="false" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="-8" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="-14" closed="false"/>
<polygon y1="44.2" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="6" closed="false"/>
<polygon y1="-44" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="12" closed="false"/>
<polygon y1="44.2" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.8" x1="-8" closed="false"/>
<polygon y1="-44" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="6" closed="false"/>
<polygon y1="-31.4" antialias="false" x2="-14" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="-8" closed="false"/>
<polygon y1="-21.988" antialias="false" x2="13" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-21.988" x1="16" closed="false"/>
<polygon y1="44.2" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="44.2" x1="-14" closed="false"/>
<polygon y1="-44" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-31.4" x1="-8" closed="false"/>
<polygon y1="-23.104" antialias="false" x2="16" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-21.988" x1="18" closed="false"/>
<polygon y1="-44" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-44" x1="-14" closed="false"/>
<polygon y1="-21.988" antialias="false" x2="11" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-21.988" x1="8" closed="false"/>
<polygon y1="-23.104" antialias="false" x2="8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-21.988" x1="6" closed="false"/>
<polygon y1="-21.988" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-20.908" x1="13" closed="false"/>
<polygon y1="-21.988" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-20.908" x1="11" closed="false"/>
<polygon y1="2.665" antialias="false" x2="-7.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="4.762" x1="-7.25" closed="false"/>
<polygon y1="2.665" antialias="false" x2="-7.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="2.665" x1="4.63" closed="false"/>
<polygon y1="4.762" antialias="false" x2="4.63" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="2.665" x1="4.63" closed="false"/>
<polygon y1="4.762" antialias="false" x2="4.63" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="4.762" x1="-7.25" closed="false"/>
<polygon y1="2.665" antialias="false" x2="-21.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="4.762" x1="-21.58" closed="false"/>
<polygon y1="2.665" antialias="false" x2="-21.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="2.665" x1="-9.69" closed="false"/>
<polygon y1="4.762" antialias="false" x2="-9.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="2.665" x1="-9.69" closed="false"/>
<polygon y1="4.762" antialias="false" x2="-9.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="4.762" x1="-21.58" closed="false"/>
<polygon y1="17.2" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="17.2" x1="-26" closed="false"/>
<polygon y1="-10" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-10" x1="-26" closed="false"/>
<polygon y1="8.2" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="10" x1="-24" closed="false"/>
<polygon y1="-1.7" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-3.5" x1="-24" closed="false"/>
<polygon y1="-1.7" antialias="false" x2="-23.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="8.2" x1="-23.97" closed="false"/>
<polygon y1="-40.4" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-3.5" x1="-26" closed="false"/>
<polygon y1="10" antialias="false" x2="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="47.8" x1="-26" closed="false"/>
<polygon y1="8.2" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="10" x1="24" closed="false"/>
<polygon y1="-1.7" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-3.5" x1="24" closed="false"/>
<polygon y1="-1.7" antialias="false" x2="24" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="8.2" x1="24" closed="false"/>
<polygon y1="-40.4" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-3.5" x1="26" closed="false"/>
<polygon y1="10" antialias="false" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="48" x1="26" closed="false"/>
<polygon y1="32.509" antialias="false" x2="12.82" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="15.63" closed="false"/>
<polygon y1="33.589" antialias="false" x2="15.63" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="17.49" closed="false"/>
<polygon y1="32.509" antialias="false" x2="11.89" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="12.82" closed="false"/>
<polygon y1="32.509" antialias="false" x2="10.95" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="8.25" closed="false"/>
<polygon y1="33.589" antialias="false" x2="8.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.509" x1="6.28" closed="false"/>
<polygon y1="32.509" antialias="false" x2="11.89" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="12.82" closed="false"/>
<polygon y1="32.509" antialias="false" x2="11.89" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="31.384" x1="10.95" closed="false"/>
<polygon y1="-21.988" antialias="false" x2="-7" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-21.988" x1="-4" closed="false"/>
<polygon y1="-23.104" antialias="false" x2="-4" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-21.988" x1="-2" closed="false"/>
<polygon y1="-21.988" antialias="false" x2="-9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-21.988" x1="-12" closed="false"/>
<polygon y1="-23.104" antialias="false" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-21.988" x1="-14" closed="false"/>
<polygon y1="-21.988" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-20.908" x1="-7" closed="false"/>
<polygon y1="-21.988" antialias="false" x2="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-20.908" x1="-9" closed="false"/>
<text text="24V+" y="43.3" rotation="270" x="-10" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="Power" y="28.9" rotation="0" x="-12" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text text="Loxone" y="-0.8" rotation="0" x="-19" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text text="Tree" y="13.3" rotation="0" x="-8" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text text="weiß" y="-24" rotation="270" x="-10" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<dynamic_text z="201" uuid="{54b619d5-111f-4cb0-a758-b177501d33d1}" Valignment="AlignTop" y="-37.7" rotation="0" text_width="-1" x="-43" Halignment="AlignRight" text_from="ElementInfo" frame="false" font="Sans Serif,5,-1,5,0,0,0,0,0,0,normal">
<text></text>
<info_name>formula</info_name>
</dynamic_text>
<dynamic_text z="287" uuid="{1c2198c8-05e6-4b4c-a7a4-e0fe74799646}" Valignment="AlignTop" y="-45.8" rotation="270" text_width="-1" x="-15" Halignment="AlignLeft" text_from="ElementInfo" frame="false" font="Sans Serif,3,-1,5,0,0,0,0,0,0,normal">
<text></text>
</dynamic_text>
<terminal y="49.6" x="15" orientation="s"/>
<terminal y="49.6" x="-11" orientation="s"/>
<terminal y="-37" x="-11" orientation="n"/>
<terminal y="-37" x="9" orientation="n"/>
<terminal y="-37" x="15" orientation="n"/>
<terminal y="-37" x="-5" orientation="n"/>
<terminal y="49.6" x="-5" orientation="s"/>
<terminal y="49.6" x="9" orientation="s"/>
</description>
</definition>
@@ -0,0 +1,61 @@
<definition hotspot_y="34" version="0.80" orientation="dyyy" hotspot_x="33" width="70" height="60" link_type="master" type="element">
<uuid uuid="{32c0c3b0-da46-4636-9202-33964dc3f317}"/>
<names>
<name lang="fr">Door switch</name>
<name lang="de">Door switch</name>
<name lang="es">Door switch</name>
<name lang="it">Door switch</name>
<name lang="nl">Door switch</name>
<name lang="pl">Door switch</name>
<name lang="ar">Door switch</name>
<name lang="cs">Door switch</name>
<name lang="en">Door switch</name>
</names>
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<polygon y5="-5" y4="-5" y2="-5" y1="-5" style="line-style:dotted;line-weight:normal;filling:none;color:black" x2="-8" x4="-12" x3="-10" x5="-20" closed="false" y3="0" x1="17" antialias="false"/>
<arc x="-2.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<arc x="-2.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<polygon y2="5" y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" x3="20" closed="false" y3="15" x1="15" antialias="true"/>
<line end1="none" length2="1.5" y2="-14" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="20" end2="none" x1="20" antialias="false"/>
<arc x="17.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<arc x="17.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<dynamic_text z="10" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="35" rotation="0" uuid="{8053f011-a2d9-400b-b527-e8d14d50237e}" text_from="ElementInfo" Halignment="AlignLeft" text_width="-1" y="-15" frame="true">
<text/>
<info_name>label</info_name>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-14" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>21</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-15" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>22</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="5.5" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>14</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="6" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>13</text>
</dynamic_text>
<polygon y2="5" y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" x3="0" closed="false" y3="15" x1="5" antialias="true"/>
<line end1="none" length2="1.5" y2="-14" y1="-14" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="6" end2="none" x1="0" antialias="false"/>
<line end1="none" length2="1.5" y2="-14" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" end2="none" x1="0" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-16" end2="none" x1="-16" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="30" end2="none" x1="30" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-3" end2="none" x1="-16" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="17" end2="none" x1="3" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="30" end2="none" x1="23" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="30" end2="none" x1="23" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-3" end2="none" x1="-16" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="17" end2="none" x1="3" antialias="false"/>
<circle x="-26.5" diameter="7" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-8.5" antialias="false"/>
<terminal x="20" orientation="s" y="20"/>
<terminal x="0" orientation="n" y="-30"/>
<terminal x="20" orientation="n" y="-30"/>
<terminal x="0" orientation="s" y="20"/>
</description>
</definition>
@@ -0,0 +1,141 @@
<definition hotspot_y="34" version="0.80" orientation="dyyy" hotspot_x="68" width="170" height="60" link_type="master" type="element">
<uuid uuid="{a9fe1cfe-edd7-413d-ac2a-735492fcb7f3}"/>
<names>
<name lang="ar">Door Lock</name>
<name lang="it">Door Lock</name>
<name lang="en">Door Lock</name>
<name lang="de">Door Lock</name>
<name lang="nl">Door Lock</name>
<name lang="cs">Door Lock</name>
<name lang="es">Door Lock</name>
<name lang="pl">Door Lock</name>
<name lang="fr">Door Lock</name>
</names>
<kindInformations>
<kindInformation show="1" name="type">commutator</kindInformation>
</kindInformations>
<elementInformations/>
<informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description>
<arc x="67.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<arc x="-52.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<arc x="67.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<arc x="-52.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<arc x="47.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<arc x="47.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<arc x="-12.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<arc x="-12.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<arc x="-32.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<dynamic_text z="10" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="103" rotation="0" uuid="{8053f011-a2d9-400b-b527-e8d14d50237e}" text_from="ElementInfo" Halignment="AlignLeft" text_width="-1" y="-15" frame="true">
<text/>
<info_name>label</info_name>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="74.5" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>14</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-5" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>63</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-45" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>52</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-5.5" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>64</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-25" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>72</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="55" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>22</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="35" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>41</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-25" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>71</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-66" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>A1</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-45" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>51</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="55" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>21</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="34" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>42</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="-66" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-33" frame="false">
<text>A2</text>
</dynamic_text>
<dynamic_text z="11" Valignment="AlignTop" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" x="75" rotation="0" uuid="{cc7bb8fc-97ea-4f33-abcc-7c37e5174f9b}" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="4" frame="false">
<text>13</text>
</dynamic_text>
<arc x="-32.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<arc x="87.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<arc x="87.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<arc x="7.5" angle="180" start="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="17.5" antialias="true"/>
<polygon y2="5" y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="50" x3="50" closed="false" y3="15" x1="55" antialias="true"/>
<polygon y2="5" y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="90" x3="90" closed="false" y3="15" x1="85" antialias="true"/>
<arc x="7.5" angle="180" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" y="-32.5" antialias="true"/>
<polygon y2="5" y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="70" x3="70" closed="false" y3="15" x1="75" antialias="true"/>
<line end1="none" length2="1.5" y2="-14" y1="-14" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="56" end2="none" x1="50" antialias="false"/>
<line end1="none" length2="1.5" y2="-14" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="50" end2="none" x1="50" antialias="false"/>
<polygon y2="5" y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-30" x3="-30" closed="false" y3="15" x1="-25" antialias="true"/>
<line end1="none" length2="1.5" y2="-14" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="90" end2="none" x1="90" antialias="false"/>
<line end1="none" length2="1.5" y2="-14" y1="-14" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="76" end2="none" x1="70" antialias="false"/>
<line end1="none" length2="1.5" y2="-14" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="70" end2="none" x1="70" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="67" end2="none" x1="53" antialias="false"/>
<polygon y2="5" y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="10" x3="10" closed="false" y3="15" x1="5" antialias="true"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="87" end2="none" x1="73" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="97" end2="none" x1="93" antialias="false"/>
<polygon y2="5" y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-10" x3="-10" closed="false" y3="15" x1="-5" antialias="true"/>
<line end1="none" length2="1.5" y2="-14" y1="-14" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-24" end2="none" x1="-30" antialias="false"/>
<line end1="none" length2="1.5" y2="-14" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-30" end2="none" x1="-30" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="93" end2="none" x1="97" antialias="false"/>
<line end1="none" length2="1.5" y2="-14" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="10" end2="none" x1="10" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="87" end2="none" x1="73" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="67" end2="none" x1="53" antialias="false"/>
<line end1="none" length2="1.5" y2="-14" y1="-14" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-4" end2="none" x1="-10" antialias="false"/>
<line end1="none" length2="1.5" y2="-14" y1="-25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-10" end2="none" x1="-10" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-64" end2="none" x1="-64" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-53" end2="none" x1="-64" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-33" end2="none" x1="-47" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-13" end2="none" x1="-27" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="7" end2="none" x1="-7" antialias="false"/>
<line end1="none" length2="1.5" y2="-30" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="47" end2="none" x1="13" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="13" end2="none" x1="47" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="7" end2="none" x1="-7" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-53" end2="none" x1="-64" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-33" end2="none" x1="-47" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-13" end2="none" x1="-27" antialias="false"/>
<rect x="-57" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="14" height="25" y="-18" antialias="false"/>
<line end1="none" length2="1.5" y2="-19" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-50" end2="none" x1="-50" antialias="false"/>
<line end1="none" length2="1.5" y2="7" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-50" end2="none" x1="-50" antialias="false"/>
<circle x="19" diameter="22" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-17" antialias="false"/>
<line end1="none" length2="1.5" y2="0" y1="-12" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="23" end2="none" x1="23" antialias="false"/>
<line end1="none" length2="1.5" y2="-9" y1="-9" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="36" end2="none" x1="23" antialias="false"/>
<line end1="none" length2="1.5" y2="-3" y1="-3" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="36" end2="none" x1="23" antialias="false"/>
<line end1="none" length2="1.5" y2="-6" y1="-12" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="39" end2="none" x1="34" antialias="false"/>
<line end1="none" length2="1.5" y2="0" y1="-6" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="34" end2="none" x1="39" antialias="false"/>
<line end1="none" length2="1.5" y2="20" y1="-30" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="97" end2="none" x1="97" antialias="false"/>
<line end1="none" length2="1.5" y2="-6" y1="-6" length1="1.5" style="line-style:dotted;line-weight:normal;filling:none;color:black" x2="6" end2="none" x1="-42" antialias="false"/>
<line end1="none" length2="1.5" y2="-6" y1="-6" length1="1.5" style="line-style:dotted;line-weight:normal;filling:none;color:black" x2="86" end2="none" x1="42" antialias="false"/>
<terminal x="70" orientation="n" y="-30"/>
<terminal x="90" orientation="n" y="-30"/>
<terminal x="50" orientation="s" y="20"/>
<terminal x="50" orientation="n" y="-30"/>
<terminal x="-10" orientation="n" y="-30"/>
<terminal x="10" orientation="s" y="20"/>
<terminal x="90" orientation="s" y="20"/>
<terminal x="-30" orientation="s" y="20"/>
<terminal x="-10" orientation="s" y="20"/>
<terminal x="-50" orientation="n" y="-30"/>
<terminal x="-50" orientation="s" y="20"/>
<terminal x="-30" orientation="n" y="-30"/>
<terminal x="10" orientation="n" y="-30"/>
<terminal x="70" orientation="s" y="20"/>
</description>
</definition>
@@ -1,100 +1,99 @@
<definition height="210" hotspot_x="33" link_type="simple" type="element" width="60" version="0.90" hotspot_y="131">
<definition hotspot_y="131" height="210" width="60" type="element" link_type="simple" version="0.90" hotspot_x="33">
<names>
<name lang="fr">750-642</name>
<name lang="en">750-642</name>
<name lang="de">750-642</name>
<name lang="fr">750-642</name>
<name lang="cs">750-642</name>
<name lang="de">750-642</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">750-642</elementInformation>
<elementInformation show="1" name="description">RF-Receiver EnOcean</elementInformation>
<elementInformation show="1" name="designation">750-642</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon y24="66.5" y14="-124.5" x44="2" x47="10" y9="-126.5" x32="10" y33="67.5" y3="-120.5" x38="20" x45="2" x1="-6" y36="70.5" y39="-119.5" y44="-117.5" y19="73.5" y15="71.5" x18="-30" x2="-7" y29="70.5" antialias="false" y26="67.5" y11="-120.5" y35="70.5" y13="-124.5" x22="-22" y5="-117.5" x40="17" x7="-22" y28="73.5" y43="-117.5" x20="-14" y21="70.5" y12="-120.5" x31="2" y1="-119.5" x43="10" x10="-30" x48="-6" y7="-123.5" x13="-28" y20="73.5" x4="-14" x21="-14" x30="2" x36="24" x14="-24" x34="20" x15="-24" y16="71.5" x16="-28" x23="-22" y47="-126.5" y17="67.5" y48="-126.5" x12="-28" x24="-14" x27="-6" x28="10" y32="66.5" x19="-30" y27="73.5" x33="10" y41="-120.5" y25="67.5" x46="10" x29="10" y37="-123.5" style="line-style:normal;line-weight:thin;filling:white;color:black" x41="17" y23="66.5" x3="-7" x17="-28" y2="-119.5" y34="67.5" y30="70.5" x9="-14" x25="-14" y42="-120.5" y18="67.5" y4="-120.5" x37="24" x11="-30" x8="-14" y6="-117.5" x35="20" x42="10" y46="-123.5" x6="-22" y40="-119.5" x26="-6" y31="66.5" y8="-123.5" y22="70.5" y38="-123.5" x39="20" x5="-14" y10="-126.5" y45="-123.5"/>
<line length1="1.5" x1="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" length2="1.5" y2="-126.5" y1="73.5" end1="none" end2="none" x2="0"/>
<dynamic_text z="8" font="Sans Serif,4,-1,5,25,0,0,0,0,0" text_width="-1" keep_visual_rotation="true" x="-4.32" y="-50.5" Valignment="AlignVCenter" text_from="ElementInfo" uuid="{7e6b9aba-9db0-4037-a375-6029b90c44cb}" frame="false" rotation="0" Halignment="AlignHCenter">
<polygon y12="-120.5" x2="-7" y40="-119.5" y34="67.5" y19="73.5" x5="-14" x41="17" y31="66.5" x42="10" y32="66.5" y47="-126.5" x6="-22" y15="71.5" x29="10" x16="-28" x34="20" y8="-123.5" x20="-14" x17="-28" x31="2" x12="-28" y13="-124.5" y41="-120.5" y26="67.5" y5="-117.5" x44="2" y17="67.5" x39="20" x18="-30" y7="-123.5" y14="-124.5" x47="10" x19="-30" y10="-126.5" x21="-14" y1="-119.5" y24="66.5" x23="-22" y29="70.5" antialias="false" y20="73.5" x13="-28" y9="-126.5" y4="-120.5" x32="10" y33="67.5" y43="-117.5" y27="73.5" y2="-119.5" y38="-123.5" x7="-22" y37="-123.5" x40="17" y45="-123.5" y42="-120.5" x3="-7" y46="-123.5" x15="-24" y36="70.5" y48="-126.5" y6="-117.5" y18="67.5" y11="-120.5" x46="10" y39="-119.5" y35="70.5" y22="70.5" x36="24" x25="-14" x48="-6" x14="-24" x30="2" x35="20" x1="-6" x22="-22" x24="-14" x8="-14" x38="20" y30="70.5" y25="67.5" x9="-14" x27="-6" y3="-120.5" y44="-117.5" style="line-style:normal;line-weight:thin;filling:white;color:black" y21="70.5" x4="-14" x33="10" x10="-30" x43="10" x26="-6" x28="10" y23="66.5" y28="73.5" x37="24" x45="2" x11="-30" y16="71.5"/>
<line length2="1.5" length1="1.5" y1="73.5" y2="-126.5" style="line-style:normal;line-weight:thin;filling:white;color:black" x2="0" end1="none" end2="none" antialias="false" x1="0"/>
<rect y="-72.57" ry="0" height="8" width="7" rx="0" x="12.27" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-72.57" ry="0" height="8" width="7" rx="0" x="-12.04" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="34.39" ry="0" height="8" width="7" rx="0" x="12.27" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="34.39" ry="0" height="8" width="7" rx="0" x="-11.94" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-39.41" ry="0" height="8" width="7" rx="0" x="12.27" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<dynamic_text text_width="-1" y="-50.5" frame="false" font="Sans Serif,4,-1,5,25,0,0,0,0,0" keep_visual_rotation="true" Valignment="AlignVCenter" x="-4.32" rotation="0" uuid="{7e6b9aba-9db0-4037-a375-6029b90c44cb}" z="8" text_from="ElementInfo" Halignment="AlignHCenter">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="12.27" y="-72.57" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-12.04" y="-72.57" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="12.27" y="34.39" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-11.94" y="34.39" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="12.27" y="-39.41" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-11.94" y="-39.41" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="12.27" y="-2.48" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-11.94" y="-2.48" width="7.03" ry="0"/>
<polygon y9="56.34" x18="10.3" x14="17.27" x5="7.38" antialias="false" x17="11.02" y6="55.32" y11="53.66" x10="18.68" x20="8.51" y7="53.68" y16="45.15" y24="45.93" y19="45.94" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="46" x23="2.02" y13="45.46" x21="7.22" x1="0.22" y3="55.28" y20="45.1" x4="3.15" y23="45.09" x22="3.29" x3="1.3" y1="47" x12="21.39" y12="47.7" x9="13.26" y8="55.28" x7="10.3" x11="21.39" y14="44.7" y5="56.34" y18="47.05" y2="53.68" y4="56.34" x6="9.22" y15="44.7" x16="12.08" x24="0.95" x15="13.32" x13="19.68" y21="44.67" x19="9.55" y10="56.34" x2="0.22" x8="11.38" y22="44.67"/>
<polygon y9="56.34" x18="-13.92" x14="-6.94" x5="-16.83" antialias="false" x17="-13.19" y6="55.32" y11="53.66" x10="-5.53" x20="-15.71" y7="53.68" y16="45.15" y24="45.93" y19="45.94" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="46" x23="-22.19" y13="45.46" x21="-17" x1="-24" y3="55.28" y20="45.1" x4="-21.06" y23="45.09" x22="-20.92" x3="-22.9" y1="47" x12="-2.81" y12="47.7" x9="-10.96" y8="55.28" x7="-13.92" x11="-2.81" y14="44.7" y5="56.34" y18="47.05" y2="53.68" y4="56.34" x6="-15" y15="44.7" x16="-12.14" x24="-23.26" x15="-10.89" x13="-4.55" y21="44.67" x19="-14.67" y10="56.34" x2="-24" x8="-12.82" y22="44.67"/>
<polygon y9="-17.41" x18="10.26" x14="17.24" x5="7.34" antialias="false" x17="10.97" y6="-18.43" y11="-20.09" x10="18.65" x20="8.47" y7="-20.07" y16="-28.6" y24="-27.82" y19="-27.81" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="-27.76" x23="1.98" y13="-28.29" x21="7.18" x1="0.17" y3="-18.47" y20="-28.65" x4="3.1" y23="-28.65" x22="3.25" x3="1.26" y1="-26.74" x12="21.35" y12="-26.05" x9="13.21" y8="-18.47" x7="10.26" x11="21.35" y14="-29.05" y5="-17.41" y18="-26.7" y2="-20.07" y4="-17.41" x6="9.18" y15="-29.05" x16="12.03" x24="0.9" x15="13.27" x13="19.62" y21="-29.08" x19="9.49" y10="-17.41" x2="0.17" x8="11.34" y22="-29.08"/>
<polygon y9="-17.41" x18="-13.96" x14="-6.98" x5="-16.87" antialias="false" x17="-13.24" y6="-18.43" y11="-20.09" x10="-5.57" x20="-15.74" y7="-20.07" y16="-28.6" y24="-27.82" y19="-27.81" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="-27.76" x23="-22.24" y13="-28.29" x21="-17.03" x1="-24" y3="-18.47" y20="-28.65" x4="-21.1" y23="-28.65" x22="-20.97" x3="-22.96" y1="-26.74" x12="-2.87" y12="-26.05" x9="-11" y8="-18.47" x7="-13.96" x11="-2.87" y14="-29.05" y5="-17.41" y18="-26.7" y2="-20.07" y4="-17.41" x6="-15.03" y15="-29.05" x16="-12.19" x24="-23.31" x15="-10.94" x13="-4.59" y21="-29.08" x19="-14.72" y10="-17.41" x2="-24" x8="-12.88" y22="-29.08"/>
<polygon y9="19.18" x18="-13.94" x14="-6.97" x5="-16.85" antialias="false" x17="-13.22" y6="18.16" y11="16.5" x10="-5.55" x20="-15.73" y7="16.52" y16="8" y24="8.77" y19="8.78" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="8.83" x23="-22.21" y13="8.3" x21="-17" x1="-24" y3="18.12" y20="7.94" x4="-21.08" y23="7.94" x22="-20.94" x3="-22.92" y1="9.85" x12="-2.84" y12="10.54" x9="-10.98" y8="18.12" x7="-13.94" x11="-2.84" y14="7.54" y5="19.18" y18="9.89" y2="16.52" y4="19.18" x6="-15" y15="7.54" x16="-12.15" x24="-23.28" x15="-10.91" x13="-4.56" y21="7.51" x19="-14.69" y10="19.18" x2="-24" x8="-12.85" y22="7.51"/>
<polygon y9="19.18" x18="10.27" x14="17.26" x5="7.35" antialias="false" x17="11" y6="18.16" y11="16.5" x10="18.67" x20="8.48" y7="16.52" y16="8" y24="8.77" y19="8.78" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="8.83" x23="2" y13="8.3" x21="7.19" x1="0.19" y3="18.12" y20="7.94" x4="3.13" y23="7.94" x22="3.27" x3="1.28" y1="9.85" x12="21.37" y12="10.54" x9="13.24" y8="18.12" x7="10.27" x11="21.37" y14="7.54" y5="19.18" y18="9.89" y2="16.52" y4="19.18" x6="9.19" y15="7.54" x16="12.05" x24="0.93" x15="13.29" x13="19.64" y21="7.51" x19="9.51" y10="19.18" x2="0.19" x8="11.36" y22="7.51"/>
<polygon x7="-14.94" y6="17.24" y7="15.45" y12="6.88" y8="11.7" x5="-21.21" x4="-23" y14="6" y9="10.36" y13="6" x3="-23" y16="7.98" x1="-20.81" x13="-17.87" x14="-20.1" x10="-17.12" y5="17.24" x15="-21" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-22.14" x8="-14.94" antialias="false" x16="-21" y2="10.36" x11="-16.97" y15="6.88" y3="11.7" y1="9.69" x12="-16.97" y10="9.69" x9="-15.83" y4="15.45" x6="-16.76" y11="7.98"/>
<polygon x7="9.26" y6="17.24" y7="15.45" y12="6.88" y8="11.7" x5="3" x4="1.19" y14="6" y9="10.36" y13="6" x3="1.19" y16="7.98" x1="3.4" x13="6.34" x14="4.12" x10="7.09" y5="17.24" x15="3.21" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="2.08" x8="9.26" antialias="false" x16="3.21" y2="10.36" x11="7.24" y15="6.88" y3="11.7" y1="9.69" x12="7.24" y10="9.69" x9="8.38" y4="15.45" x6="7.45" y11="7.98"/>
<polygon x7="-14.98" y6="-19.35" y7="-21.14" y12="-29.71" y8="-24.89" x5="-21.24" x4="-23.03" y14="-30.6" y9="-26.23" y13="-30.6" x3="-23.03" y16="-28.61" x1="-20.83" x13="-17.9" x14="-20.12" x10="-17.15" y5="-19.35" x15="-21" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-22.15" x8="-14.98" antialias="false" x16="-21" y2="-26.23" x11="-17" y15="-29.71" y3="-24.89" y1="-26.9" x12="-17" y10="-26.9" x9="-15.85" y4="-21.14" x6="-16.78" y11="-28.61"/>
<polygon x7="9.24" y6="-19.35" y7="-21.14" y12="-29.71" y8="-24.89" x5="2.98" x4="1.17" y14="-30.6" y9="-26.23" y13="-30.6" x3="1.17" y16="-28.61" x1="3.37" x13="6.32" x14="4.09" x10="7.07" y5="-19.35" x15="3.19" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="2.05" x8="9.24" antialias="false" x16="3.19" y2="-26.23" x11="7.22" y15="-29.71" y3="-24.89" y1="-26.9" x12="7.22" y10="-26.9" x9="8.36" y4="-21.14" x6="7.43" y11="-28.61"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="2.16" y="-39.41" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-22.06" y="-39.41" width="7.03" ry="0"/>
<polygon y9="-50.57" x18="10.23" x14="17.2" x5="7.31" antialias="false" x17="10.95" y6="-51.58" y11="-53.25" x10="18.61" x20="8.44" y7="-53.22" y16="-61.75" y24="-60.98" y19="-60.97" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="-60.91" x23="1.96" y13="-61.45" x21="7.15" x1="0.15" y3="-51.62" y20="-61.81" x4="3.08" y23="-61.81" x22="3.22" x3="1.23" y1="-59.9" x12="21.32" y12="-59.2" x9="13.18" y8="-51.63" x7="10.23" x11="21.32" y14="-62.21" y5="-50.57" y18="-59.86" y2="-53.23" y4="-50.57" x6="9.15" y15="-62.21" x16="12" x24="0.88" x15="13.26" x13="19.6" y21="-62.24" x19="9.47" y10="-50.57" x2="0.15" x8="11.32" y22="-62.24"/>
<polygon y9="-50.57" x18="-14" x14="-7" x5="-16.9" antialias="false" x17="-13.26" y6="-51.58" y11="-53.25" x10="-5.6" x20="-15.78" y7="-53.22" y16="-61.75" y24="-60.98" y19="-60.97" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="-60.91" x23="-22.26" y13="-61.45" x21="-17.06" x1="-24" y3="-51.62" y20="-61.81" x4="-21.12" y23="-61.81" x22="-21" x3="-22.98" y1="-59.9" x12="-2.89" y12="-59.2" x9="-11.03" y8="-51.63" x7="-14" x11="-2.89" y14="-62.21" y5="-50.57" y18="-59.86" y2="-53.23" y4="-50.57" x6="-15.06" y15="-62.21" x16="-12.21" x24="-23.33" x15="-10.97" x13="-4.62" y21="-62.24" x19="-14.74" y10="-50.57" x2="-24" x8="-12.89" y22="-62.24"/>
<polygon x7="-14.92" y6="54.4" y7="52.61" y12="44.04" y8="48.86" x5="-21.19" x4="-23" y14="43.15" y9="47.52" y13="43.15" x3="-23" y16="45.14" x1="-20.8" x13="-17.85" x14="-20.06" x10="-17.1" y5="54.4" x15="-20.98" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-22.12" x8="-14.92" antialias="false" x16="-20.98" y2="47.52" x11="-16.94" y15="44.04" y3="48.86" y1="46.85" x12="-16.94" y10="46.85" x9="-15.81" y4="52.61" x6="-16.74" y11="45.14"/>
<polygon x7="9.28" y6="54.4" y7="52.61" y12="44.04" y8="48.86" x5="3.02" x4="1.22" y14="43.15" y9="47.52" y13="43.15" x3="1.22" y16="45.14" x1="3.42" x13="6.36" x14="4.14" x10="7.11" y5="54.4" x15="3.24" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="2.1" x8="9.28" antialias="false" x16="3.24" y2="47.52" x11="7.27" y15="44.04" y3="48.86" y1="46.85" x12="7.27" y10="46.85" x9="8.4" y4="52.61" x6="7.48" y11="45.14"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="2.16" y="-2.48" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-22.06" y="-2.48" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="2.16" y="34.39" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-22.06" y="34.39" width="7.03" ry="0"/>
<polygon x7="19.64" y6="54.4" y7="52.61" y12="44.04" y8="48.86" x5="13.38" x4="11.58" y14="43.15" y9="47.52" y13="43.15" x3="11.58" y16="45.14" x1="13.77" x13="16.72" x14="14.5" x10="17.47" y5="54.4" x15="13.59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="12.45" x8="19.64" antialias="false" x16="13.59" y2="47.52" x11="17.62" y15="44.04" y3="48.86" y1="46.85" x12="17.62" y10="46.85" x9="18.76" y4="52.61" x6="17.84" y11="45.14"/>
<polygon x7="-4.58" y6="54.4" y7="52.61" y12="44.04" y8="48.86" x5="-10.83" x4="-12.64" y14="43.15" y9="47.52" y13="43.15" x3="-12.64" y16="45.14" x1="-10.44" x13="-7.49" x14="-9.72" x10="-6.74" y5="54.4" x15="-10.62" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-11.75" x8="-4.58" antialias="false" x16="-10.62" y2="47.52" x11="-6.58" y15="44.04" y3="48.86" y1="46.85" x12="-6.58" y10="46.85" x9="-5.46" y4="52.61" x6="-6.38" y11="45.14"/>
<polygon x7="-4.62" y6="-19.35" y7="-21.14" y12="-29.71" y8="-24.89" x5="-10.88" x4="-12.69" y14="-30.6" y9="-26.23" y13="-30.6" x3="-12.69" y16="-28.61" x1="-10.48" x13="-7.54" x14="-9.77" x10="-6.79" y5="-19.35" x15="-10.66" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-11.81" x8="-4.62" antialias="false" x16="-10.66" y2="-26.23" x11="-6.64" y15="-29.71" y3="-24.89" y1="-26.9" x12="-6.64" y10="-26.9" x9="-5.49" y4="-21.14" x6="-6.43" y11="-28.61"/>
<polygon x7="19.59" y6="-19.35" y7="-21.14" y12="-29.71" y8="-24.89" x5="13.34" x4="11.53" y14="-30.6" y9="-26.23" y13="-30.6" x3="11.53" y16="-28.61" x1="13.74" x13="16.68" x14="14.45" x10="17.43" y5="-19.35" x15="13.54" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="12.42" x8="19.59" antialias="false" x16="13.54" y2="-26.23" x11="17.58" y15="-29.71" y3="-24.89" y1="-26.9" x12="17.58" y10="-26.9" x9="18.71" y4="-21.14" x6="17.79" y11="-28.61"/>
<polygon x7="-4.6" y6="17.24" y7="15.45" y12="6.88" y8="11.7" x5="-10.86" x4="-12.66" y14="6" y9="10.36" y13="6" x3="-12.66" y16="7.98" x1="-10.46" x13="-7.52" x14="-9.73" x10="-6.77" y5="17.24" x15="-10.64" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-11.79" x8="-4.6" antialias="false" x16="-10.64" y2="10.36" x11="-6.62" y15="6.88" y3="11.7" y1="9.69" x12="-6.62" y10="9.69" x9="-5.48" y4="15.45" x6="-6.4" y11="7.98"/>
<polygon x7="19.62" y6="17.24" y7="15.45" y12="6.88" y8="11.7" x5="13.35" x4="11.55" y14="6" y9="10.36" y13="6" x3="11.55" y16="7.98" x1="13.76" x13="16.69" x14="14.47" x10="17.44" y5="17.24" x15="13.58" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="12.43" x8="19.62" antialias="false" x16="13.58" y2="10.36" x11="17.6" y15="6.88" y3="11.7" y1="9.69" x12="17.6" y10="9.69" x9="18.74" y4="15.45" x6="17.82" y11="7.98"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="24.44" y1="24.44" x2="24"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.44" y1="32.44" x2="24"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-12.56" y1="-12.56" x2="24"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-4.56" y1="-4.56" x2="24"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-49.57" y1="-49.57" x2="24"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-41.56" y1="-41.56" x2="24"/>
<polygon closed="false" x1="24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-82.56" y1="-82.56" x2="-24"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-74.57" y1="-74.57" x2="24"/>
<polygon x1="21.39" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black" y3="15.57" y2="-2.7" y1="-2.7" x3="24.25" x4="21.39" x2="24.25" y4="15.57"/>
<polygon x1="-2.93" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" y3="15.57" y2="-2.7" y1="-2.7" x3="-0.07" x4="-2.93" x2="-0.07" y4="15.57"/>
<polygon closed="false" x1="-2.94" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="6.13" y1="6.13" x2="-0.06"/>
<polygon closed="false" x1="21.39" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="6.13" y1="6.13" x2="24.26"/>
<polygon x7="9.22" y6="-52.5" y7="-54.29" y12="-62.87" y8="-58.05" x5="2.96" x4="1.15" y14="-63.76" y9="-59.39" y13="-63.76" x3="1.15" y16="-61.77" x1="3.35" x13="6.29" x14="4.07" x10="7.05" y5="-52.5" x15="3.17" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="2.03" x8="9.22" antialias="false" x16="3.17" y2="-59.39" x11="7.2" y15="-62.87" y3="-58.05" y1="-60.06" x12="7.2" y10="-60.06" x9="8.34" y4="-54.29" x6="7.42" y11="-61.77"/>
<polygon x7="-15.09" y6="-52.5" y7="-54.29" y12="-62.87" y8="-58.05" x5="-21.36" x4="-23.16" y14="-63.76" y9="-59.39" y13="-63.76" x3="-23.16" y16="-61.77" x1="-20.95" x13="-18.02" x14="-20.24" x10="-17.27" y5="-52.5" x15="-21.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-22.27" x8="-15.09" antialias="false" x16="-21.15" y2="-59.39" x11="-17.11" y15="-62.87" y3="-58.05" y1="-60.06" x12="-17.11" y10="-60.06" x9="-15.97" y4="-54.29" x6="-16.9" y11="-61.77"/>
<polygon x7="19.57" y6="-52.5" y7="-54.29" y12="-62.87" y8="-58.05" x5="13.32" x4="11.51" y14="-63.76" y9="-59.39" y13="-63.76" x3="11.51" y16="-61.77" x1="13.7" x13="16.66" x14="14.43" x10="17.41" y5="-52.5" x15="13.52" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="12.38" x8="19.57" antialias="false" x16="13.52" y2="-59.39" x11="17.55" y15="-62.87" y3="-58.05" y1="-60.06" x12="17.55" y10="-60.06" x9="18.69" y4="-54.29" x6="17.76" y11="-61.77"/>
<polygon x7="-4.64" y6="-52.5" y7="-54.29" y12="-62.87" y8="-58.05" x5="-10.89" x4="-12.71" y14="-63.76" y9="-59.39" y13="-63.76" x3="-12.71" y16="-61.77" x1="-10.5" x13="-7.56" x14="-9.79" x10="-6.81" y5="-52.5" x15="-10.69" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-11.82" x8="-4.64" antialias="false" x16="-10.69" y2="-59.39" x11="-6.65" y15="-62.87" y3="-58.05" y1="-60.06" x12="-6.65" y10="-60.06" x9="-5.53" y4="-54.29" x6="-6.45" y11="-61.77"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="2.16" y="-72.57" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-22.16" y="-72.57" width="7.03" ry="0"/>
<polygon antialias="false" y3="-116.56" x1="0" y1="-102.56" y2="-102.56" x4="0" y4="-116.56" x2="24" x3="24" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-116.56" x1="-24.11" y1="-102.56" y2="-102.56" x4="-24.11" y4="-116.56" x2="0.11" x3="0.11" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-102.56" x1="-24.11" y1="-116.56" y2="-116.56" x4="-24.11" y4="-102.56" x2="0.11" x3="0.11" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon antialias="false" y3="-112.13" x1="4.21" y1="-107.13" y2="-107.13" x4="4.21" y4="-112.13" x2="20.34" x3="20.34" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-112.13" x1="-20.06" y1="-107.13" y2="-107.13" x4="-20.06" y4="-112.13" x2="-3.93" x3="-3.93" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-107.13" x1="4.21" y1="-112.13" y2="-112.13" x4="4.21" y4="-107.13" x2="20.34" x3="20.34" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-107.13" x1="-20.06" y1="-112.13" y2="-112.13" x4="-20.06" y4="-107.13" x2="-3.93" x3="-3.93" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" x1="24.38" y1="-82.56" y2="-82.56" x2="0.16" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" x1="0.11" y1="-82.56" y2="-82.56" x2="-24.11" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" x1="0.16" y1="-102.06" y2="-102.06" x2="24.38" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" x1="-24.11" y1="-102.06" y2="-102.06" x2="0.11" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-105.56" x1="1.17" y1="-113.57" y2="-113.57" x4="1.17" y4="-105.56" x2="23.37" x3="23.37" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-105.56" x1="-23.1" y1="-113.57" y2="-113.57" x4="-23.1" y4="-105.56" x2="-0.9" x3="-0.9" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<text font="Sans Serif,2.86,-1,5,50,0,0,0,0,0" x="-8.27" rotation="0" text="750-642" color="#000000" y="63.26"/>
<text font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-23.7" rotation="0" text="A" color="#000000" y="-99.67"/>
<text font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-23.7" rotation="0" text="B" color="#000000" y="-90.52"/>
<text font="Sans Serif,3.43,-1,5,50,0,0,0,0,0" x="-4.25" rotation="0" text="C" color="#000000" y="-95.09"/>
<text font="Sans Serif,3.43,-1,5,50,0,0,0,0,0" x="-4.5" rotation="0" text="D" color="#000000" y="-85.95"/>
<circle antialias="false" x="-22.54" diameter="6.86" y="-100" style="line-style:normal;line-weight:thin;filling:green;color:black"/>
<circle antialias="false" x="-12.4" diameter="6.86" y="-100" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<circle antialias="false" x="-12.4" diameter="6.86" y="-90.81" style="line-style:normal;line-weight:thin;filling:green;color:black"/>
<circle antialias="false" x="-22.54" diameter="6.86" y="-90.81" style="line-style:normal;line-weight:thin;filling:green;color:black"/>
<circle antialias="false" x="6" diameter="12" y="-98" style="line-style:normal;line-weight:hight;filling:lightgray;color:HTMLOrangeOrange"/>
<circle antialias="false" x="11" diameter="2" y="-93" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect y="-39.41" ry="0" height="8" width="7" rx="0" x="-11.94" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-2.48" ry="0" height="8" width="7" rx="0" x="12.27" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-2.48" ry="0" height="8" width="7" rx="0" x="-11.94" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<polygon y8="55.28" antialias="false" x3="1.1" x12="21.19" x13="19.48" x5="7.18" x17="10.82" x11="21.19" y13="45.46" x9="13.06" y18="47.05" y21="44.67" x22="3.09" y2="53.68" y19="45.94" x24="0.75" y16="45.15" y17="46" y5="56.34" x1="0" y24="45.93" y10="56.34" x4="2.95" x8="11.18" x14="17.07" x21="7.02" y12="47.7" x16="11.88" y9="56.34" x2="0" x15="13.12" y15="44.7" y4="56.34" x19="9.35" y6="55.32" y22="44.67" x20="8.31" x6="9.02" x10="18.48" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="53.68" x7="10.1" y1="47" x18="10.1" y14="44.7" y20="45.1" y23="45.09" y3="55.28" y11="53.66" x23="1.82"/>
<polygon y8="55.28" antialias="false" x3="-22.9" x12="-2.81" x13="-4.55" x5="-16.83" x17="-13.19" x11="-2.81" y13="45.46" x9="-10.96" y18="47.05" y21="44.67" x22="-20.92" y2="53.68" y19="45.94" x24="-23.26" y16="45.15" y17="46" y5="56.34" x1="-24" y24="45.93" y10="56.34" x4="-21.06" x8="-12.82" x14="-6.94" x21="-17" y12="47.7" x16="-12.14" y9="56.34" x2="-24" x15="-10.89" y15="44.7" y4="56.34" x19="-14.67" y6="55.32" y22="44.67" x20="-15.71" x6="-15" x10="-5.53" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="53.68" x7="-13.92" y1="47" x18="-13.92" y14="44.7" y20="45.1" y23="45.09" y3="55.28" y11="53.66" x23="-22.19"/>
<polygon y8="-18.47" antialias="false" x3="1.26" x12="21.35" x13="19.62" x5="7.34" x17="10.97" x11="21.35" y13="-28.29" x9="13.21" y18="-26.7" y21="-29.08" x22="3.25" y2="-20.07" y19="-27.81" x24="0.9" y16="-28.6" y17="-27.76" y5="-17.41" x1="0.17" y24="-27.82" y10="-17.41" x4="3.1" x8="11.34" x14="17.24" x21="7.18" y12="-26.05" x16="12.03" y9="-17.41" x2="0.17" x15="13.27" y15="-29.05" y4="-17.41" x19="9.49" y6="-18.43" y22="-29.08" x20="8.47" x6="9.18" x10="18.65" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="-20.07" x7="10.26" y1="-26.74" x18="10.26" y14="-29.05" y20="-28.65" y23="-28.65" y3="-18.47" y11="-20.09" x23="1.98"/>
<polygon y8="-18.47" antialias="false" x3="-22.96" x12="-2.87" x13="-4.59" x5="-16.87" x17="-13.24" x11="-2.87" y13="-28.29" x9="-11" y18="-26.7" y21="-29.08" x22="-20.97" y2="-20.07" y19="-27.81" x24="-23.31" y16="-28.6" y17="-27.76" y5="-17.41" x1="-24" y24="-27.82" y10="-17.41" x4="-21.1" x8="-12.88" x14="-6.98" x21="-17.03" y12="-26.05" x16="-12.19" y9="-17.41" x2="-24" x15="-10.94" y15="-29.05" y4="-17.41" x19="-14.72" y6="-18.43" y22="-29.08" x20="-15.74" x6="-15.03" x10="-5.57" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="-20.07" x7="-13.96" y1="-26.74" x18="-13.96" y14="-29.05" y20="-28.65" y23="-28.65" y3="-18.47" y11="-20.09" x23="-22.24"/>
<polygon y8="18.12" antialias="false" x3="-22.92" x12="-2.84" x13="-4.56" x5="-16.85" x17="-13.22" x11="-2.84" y13="8.3" x9="-10.98" y18="9.89" y21="7.51" x22="-20.94" y2="16.52" y19="8.78" x24="-23.28" y16="8" y17="8.83" y5="19.18" x1="-24" y24="8.77" y10="19.18" x4="-21.08" x8="-12.85" x14="-6.97" x21="-17" y12="10.54" x16="-12.15" y9="19.18" x2="-24" x15="-10.91" y15="7.54" y4="19.18" x19="-14.69" y6="18.16" y22="7.51" x20="-15.73" x6="-15" x10="-5.55" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="16.52" x7="-13.94" y1="9.85" x18="-13.94" y14="7.54" y20="7.94" y23="7.94" y3="18.12" y11="16.5" x23="-22.21"/>
<polygon y8="18.12" antialias="false" x3="1.28" x12="21.37" x13="19.64" x5="7.35" x17="11" x11="21.37" y13="8.3" x9="13.24" y18="9.89" y21="7.51" x22="3.27" y2="16.52" y19="8.78" x24="0.93" y16="8" y17="8.83" y5="19.18" x1="0.19" y24="8.77" y10="19.18" x4="3.13" x8="11.36" x14="17.26" x21="7.19" y12="10.54" x16="12.05" y9="19.18" x2="0.19" x15="13.29" y15="7.54" y4="19.18" x19="9.51" y6="18.16" y22="7.51" x20="8.48" x6="9.19" x10="18.67" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="16.52" x7="10.27" y1="9.85" x18="10.27" y14="7.54" y20="7.94" y23="7.94" y3="18.12" y11="16.5" x23="2"/>
<polygon x5="-21.21" y10="9.69" x15="-21" antialias="false" y7="15.45" y12="6.88" x10="-17.12" x7="-14.94" y3="11.7" x8="-14.94" y2="10.36" x16="-21" y11="7.98" y6="17.24" y4="15.45" y15="6.88" x2="-22.14" y13="6" y16="7.98" x4="-23" y9="10.36" x11="-16.97" x14="-20.1" x3="-23" y5="17.24" x9="-15.83" y8="11.7" y1="9.69" x1="-20.81" y14="6" x6="-16.76" x12="-16.97" x13="-17.87" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="3" y10="9.69" x15="3.21" antialias="false" y7="15.45" y12="6.88" x10="7.09" x7="9.26" y3="11.7" x8="9.26" y2="10.36" x16="3.21" y11="7.98" y6="17.24" y4="15.45" y15="6.88" x2="2.08" y13="6" y16="7.98" x4="1.19" y9="10.36" x11="7.24" x14="4.12" x3="1.19" y5="17.24" x9="8.38" y8="11.7" y1="9.69" x1="3.4" y14="6" x6="7.45" x12="7.24" x13="6.34" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="-21.24" y10="-26.9" x15="-21" antialias="false" y7="-21.14" y12="-29.71" x10="-17.15" x7="-14.98" y3="-24.89" x8="-14.98" y2="-26.23" x16="-21" y11="-28.61" y6="-19.35" y4="-21.14" y15="-29.71" x2="-22.15" y13="-30.6" y16="-28.61" x4="-23.03" y9="-26.23" x11="-17" x14="-20.12" x3="-23.03" y5="-19.35" x9="-15.85" y8="-24.89" y1="-26.9" x1="-20.83" y14="-30.6" x6="-16.78" x12="-17" x13="-17.9" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="2.98" y10="-26.9" x15="3.19" antialias="false" y7="-21.14" y12="-29.71" x10="7.07" x7="9.24" y3="-24.89" x8="9.24" y2="-26.23" x16="3.19" y11="-28.61" y6="-19.35" y4="-21.14" y15="-29.71" x2="2.05" y13="-30.6" y16="-28.61" x4="1.17" y9="-26.23" x11="7.22" x14="4.09" x3="1.17" y5="-19.35" x9="8.36" y8="-24.89" y1="-26.9" x1="3.37" y14="-30.6" x6="7.43" x12="7.22" x13="6.32" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<rect y="-39.41" ry="0" height="8" width="7" rx="0" x="2.16" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-39.41" ry="0" height="8" width="7" rx="0" x="-22.06" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<polygon y8="-51.63" antialias="false" x3="1.23" x12="21.32" x13="19.6" x5="7.31" x17="10.95" x11="21.32" y13="-61.45" x9="13.18" y18="-59.86" y21="-62.24" x22="3.22" y2="-53.23" y19="-60.97" x24="0.88" y16="-61.75" y17="-60.91" y5="-50.57" x1="0.15" y24="-60.98" y10="-50.57" x4="3.08" x8="11.32" x14="17.2" x21="7.15" y12="-59.2" x16="12" y9="-50.57" x2="0.15" x15="13.26" y15="-62.21" y4="-50.57" x19="9.47" y6="-51.58" y22="-62.24" x20="8.44" x6="9.15" x10="18.61" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="-53.22" x7="10.23" y1="-59.9" x18="10.23" y14="-62.21" y20="-61.81" y23="-61.81" y3="-51.62" y11="-53.25" x23="1.96"/>
<polygon y8="-51.63" antialias="false" x3="-22.98" x12="-2.89" x13="-4.62" x5="-16.9" x17="-13.26" x11="-2.89" y13="-61.45" x9="-11.03" y18="-59.86" y21="-62.24" x22="-21" y2="-53.23" y19="-60.97" x24="-23.33" y16="-61.75" y17="-60.91" y5="-50.57" x1="-24" y24="-60.98" y10="-50.57" x4="-21.12" x8="-12.89" x14="-7" x21="-17.06" y12="-59.2" x16="-12.21" y9="-50.57" x2="-24" x15="-10.97" y15="-62.21" y4="-50.57" x19="-14.74" y6="-51.58" y22="-62.24" x20="-15.78" x6="-15.06" x10="-5.6" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="-53.22" x7="-14" y1="-59.9" x18="-14" y14="-62.21" y20="-61.81" y23="-61.81" y3="-51.62" y11="-53.25" x23="-22.26"/>
<polygon x5="-21.19" y10="46.85" x15="-20.98" antialias="false" y7="52.61" y12="44.04" x10="-17.1" x7="-14.92" y3="48.86" x8="-14.92" y2="47.52" x16="-20.98" y11="45.14" y6="54.4" y4="52.61" y15="44.04" x2="-22.12" y13="43.15" y16="45.14" x4="-23" y9="47.52" x11="-16.94" x14="-20.06" x3="-23" y5="54.4" x9="-15.81" y8="48.86" y1="46.85" x1="-20.8" y14="43.15" x6="-16.74" x12="-16.94" x13="-17.85" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="3.02" y10="46.85" x15="3.24" antialias="false" y7="52.61" y12="44.04" x10="7.11" x7="9.28" y3="48.86" x8="9.28" y2="47.52" x16="3.24" y11="45.14" y6="54.4" y4="52.61" y15="44.04" x2="2.1" y13="43.15" y16="45.14" x4="1.22" y9="47.52" x11="7.27" x14="4.14" x3="1.22" y5="54.4" x9="8.4" y8="48.86" y1="46.85" x1="3.42" y14="43.15" x6="7.48" x12="7.27" x13="6.36" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<rect y="-2.48" ry="0" height="8" width="7" rx="0" x="2.16" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-2.48" ry="0" height="8" width="7" rx="0" x="-22.06" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="34.39" ry="0" height="8" width="7" rx="0" x="2.16" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="34.39" ry="0" height="8" width="7" rx="0" x="-22.06" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<polygon x5="13.38" y10="46.85" x15="13.59" antialias="false" y7="52.61" y12="44.04" x10="17.47" x7="19.64" y3="48.86" x8="19.64" y2="47.52" x16="13.59" y11="45.14" y6="54.4" y4="52.61" y15="44.04" x2="12.45" y13="43.15" y16="45.14" x4="11.58" y9="47.52" x11="17.62" x14="14.5" x3="11.58" y5="54.4" x9="18.76" y8="48.86" y1="46.85" x1="13.77" y14="43.15" x6="17.84" x12="17.62" x13="16.72" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="-10.83" y10="46.85" x15="-10.62" antialias="false" y7="52.61" y12="44.04" x10="-6.74" x7="-4.58" y3="48.86" x8="-4.58" y2="47.52" x16="-10.62" y11="45.14" y6="54.4" y4="52.61" y15="44.04" x2="-11.75" y13="43.15" y16="45.14" x4="-12.64" y9="47.52" x11="-6.58" x14="-9.72" x3="-12.64" y5="54.4" x9="-5.46" y8="48.86" y1="46.85" x1="-10.44" y14="43.15" x6="-6.38" x12="-6.58" x13="-7.49" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="-10.88" y10="-26.9" x15="-10.66" antialias="false" y7="-21.14" y12="-29.71" x10="-6.79" x7="-4.62" y3="-24.89" x8="-4.62" y2="-26.23" x16="-10.66" y11="-28.61" y6="-19.35" y4="-21.14" y15="-29.71" x2="-11.81" y13="-30.6" y16="-28.61" x4="-12.69" y9="-26.23" x11="-6.64" x14="-9.77" x3="-12.69" y5="-19.35" x9="-5.49" y8="-24.89" y1="-26.9" x1="-10.48" y14="-30.6" x6="-6.43" x12="-6.64" x13="-7.54" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="13.34" y10="-26.9" x15="13.54" antialias="false" y7="-21.14" y12="-29.71" x10="17.43" x7="19.59" y3="-24.89" x8="19.59" y2="-26.23" x16="13.54" y11="-28.61" y6="-19.35" y4="-21.14" y15="-29.71" x2="12.42" y13="-30.6" y16="-28.61" x4="11.53" y9="-26.23" x11="17.58" x14="14.45" x3="11.53" y5="-19.35" x9="18.71" y8="-24.89" y1="-26.9" x1="13.74" y14="-30.6" x6="17.79" x12="17.58" x13="16.68" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="-10.86" y10="9.69" x15="-10.64" antialias="false" y7="15.45" y12="6.88" x10="-6.77" x7="-4.6" y3="11.7" x8="-4.6" y2="10.36" x16="-10.64" y11="7.98" y6="17.24" y4="15.45" y15="6.88" x2="-11.79" y13="6" y16="7.98" x4="-12.66" y9="10.36" x11="-6.62" x14="-9.73" x3="-12.66" y5="17.24" x9="-5.48" y8="11.7" y1="9.69" x1="-10.46" y14="6" x6="-6.4" x12="-6.62" x13="-7.52" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="13.35" y10="9.69" x15="13.58" antialias="false" y7="15.45" y12="6.88" x10="17.44" x7="19.62" y3="11.7" x8="19.62" y2="10.36" x16="13.58" y11="7.98" y6="17.24" y4="15.45" y15="6.88" x2="12.43" y13="6" y16="7.98" x4="11.55" y9="10.36" x11="17.6" x14="14.47" x3="11.55" y5="17.24" x9="18.74" y8="11.7" y1="9.69" x1="13.76" y14="6" x6="17.82" x12="17.6" x13="16.69" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon closed="false" y1="24.44" y2="24.44" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="24" antialias="false" x1="-24"/>
<polygon closed="false" y1="32.44" y2="32.44" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="24" antialias="false" x1="-24"/>
<polygon closed="false" y1="-12.56" y2="-12.56" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="24" antialias="false" x1="-24"/>
<polygon closed="false" y1="-4.56" y2="-4.56" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="24" antialias="false" x1="-24"/>
<polygon closed="false" y1="-49.57" y2="-49.57" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="24" antialias="false" x1="-24"/>
<polygon closed="false" y1="-41.56" y2="-41.56" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="24" antialias="false" x1="-24"/>
<polygon closed="false" y1="-82.56" y2="-82.56" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-24" antialias="false" x1="24"/>
<polygon closed="false" y1="-74.57" y2="-74.57" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="24" antialias="false" x1="-24"/>
<polygon y3="15.57" y4="15.57" x3="24.25" y1="-2.7" x4="21.39" y2="-2.7" style="line-style:normal;line-weight:thin;filling:gray;color:black" x2="24.25" antialias="false" x1="21.39"/>
<polygon y3="15.57" y4="15.57" x3="-0.07" y1="-2.7" x4="-2.93" y2="-2.7" style="line-style:normal;line-weight:thin;filling:orange;color:black" x2="-0.07" antialias="false" x1="-2.93"/>
<polygon closed="false" y1="6.13" y2="6.13" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-0.06" antialias="false" x1="-2.94"/>
<polygon x5="2.96" y10="-60.06" x15="3.17" antialias="false" y7="-54.29" y12="-62.87" x10="7.05" x7="9.22" y3="-58.05" x8="9.22" y2="-59.39" x16="3.17" y11="-61.77" y6="-52.5" y4="-54.29" y15="-62.87" x2="2.03" y13="-63.76" y16="-61.77" x4="1.15" y9="-59.39" x11="7.2" x14="4.07" x3="1.15" y5="-52.5" x9="8.34" y8="-58.05" y1="-60.06" x1="3.35" y14="-63.76" x6="7.42" x12="7.2" x13="6.29" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="-21.36" y10="-60.06" x15="-21.15" antialias="false" y7="-54.29" y12="-62.87" x10="-17.27" x7="-15.09" y3="-58.05" x8="-15.09" y2="-59.39" x16="-21.15" y11="-61.77" y6="-52.5" y4="-54.29" y15="-62.87" x2="-22.27" y13="-63.76" y16="-61.77" x4="-23.16" y9="-59.39" x11="-17.11" x14="-20.24" x3="-23.16" y5="-52.5" x9="-15.97" y8="-58.05" y1="-60.06" x1="-20.95" y14="-63.76" x6="-16.9" x12="-17.11" x13="-18.02" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="13.32" y10="-60.06" x15="13.52" antialias="false" y7="-54.29" y12="-62.87" x10="17.41" x7="19.57" y3="-58.05" x8="19.57" y2="-59.39" x16="13.52" y11="-61.77" y6="-52.5" y4="-54.29" y15="-62.87" x2="12.38" y13="-63.76" y16="-61.77" x4="11.51" y9="-59.39" x11="17.55" x14="14.43" x3="11.51" y5="-52.5" x9="18.69" y8="-58.05" y1="-60.06" x1="13.7" y14="-63.76" x6="17.76" x12="17.55" x13="16.66" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="-10.89" y10="-60.06" x15="-10.69" antialias="false" y7="-54.29" y12="-62.87" x10="-6.81" x7="-4.64" y3="-58.05" x8="-4.64" y2="-59.39" x16="-10.69" y11="-61.77" y6="-52.5" y4="-54.29" y15="-62.87" x2="-11.82" y13="-63.76" y16="-61.77" x4="-12.71" y9="-59.39" x11="-6.65" x14="-9.79" x3="-12.71" y5="-52.5" x9="-5.53" y8="-58.05" y1="-60.06" x1="-10.5" y14="-63.76" x6="-6.45" x12="-6.65" x13="-7.56" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<rect y="-72.57" ry="0" height="8" width="7" rx="0" x="2.16" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-72.57" ry="0" height="8" width="7" rx="0" x="-22.16" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<polygon y3="-116.56" y4="-116.56" x3="24" y1="-102.56" x4="0" y2="-102.56" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="24" antialias="false" x1="0"/>
<polygon y3="-116.56" y4="-116.56" x3="0.11" y1="-102.56" x4="-24.11" y2="-102.56" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="0.11" antialias="false" x1="-24.11"/>
<polygon y3="-102.56" y4="-102.56" x3="0.11" y1="-116.56" x4="-24.11" y2="-116.56" style="line-style:normal;line-weight:thin;filling:white;color:black" x2="0.11" antialias="false" x1="-24.11"/>
<polygon y3="-112.13" y4="-112.13" x3="20.34" y1="-107.13" x4="4.21" y2="-107.13" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="20.34" antialias="false" x1="4.21"/>
<polygon y3="-112.13" y4="-112.13" x3="-3.93" y1="-107.13" x4="-20.06" y2="-107.13" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-3.93" antialias="false" x1="-20.06"/>
<polygon y3="-107.13" y4="-107.13" x3="20.34" y1="-112.13" x4="4.21" y2="-112.13" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="20.34" antialias="false" x1="4.21"/>
<polygon y3="-107.13" y4="-107.13" x3="-3.93" y1="-112.13" x4="-20.06" y2="-112.13" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-3.93" antialias="false" x1="-20.06"/>
<polygon closed="false" y1="-82.56" y2="-82.56" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="0.16" antialias="false" x1="24.38"/>
<polygon closed="false" y1="-82.56" y2="-82.56" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-24.11" antialias="false" x1="0.11"/>
<polygon closed="false" y1="-102.06" y2="-102.06" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="24.38" antialias="false" x1="0.16"/>
<polygon closed="false" y1="-102.06" y2="-102.06" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="0.11" antialias="false" x1="-24.11"/>
<polygon y3="-105.56" y4="-105.56" x3="23.37" y1="-113.57" x4="1.17" y2="-113.57" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="23.37" antialias="false" x1="1.17"/>
<polygon y3="-105.56" y4="-105.56" x3="-0.9" y1="-113.57" x4="-23.1" y2="-113.57" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-0.9" antialias="false" x1="-23.1"/>
<text y="63.26" text="750-642" font="Sans Serif,2.86,-1,5,50,0,0,0,0,0" x="-8.27" rotation="0" color="#000000"/>
<text y="-99.67" text="A" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-23.7" rotation="0" color="#000000"/>
<text y="-90.52" text="B" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-23.7" rotation="0" color="#000000"/>
<text y="-95.09" text="C" font="Sans Serif,3.43,-1,5,50,0,0,0,0,0" x="-4.25" rotation="0" color="#000000"/>
<text y="-85.95" text="D" font="Sans Serif,3.43,-1,5,50,0,0,0,0,0" x="-4.5" rotation="0" color="#000000"/>
<circle y="-100" diameter="6.86" x="-22.54" style="line-style:normal;line-weight:thin;filling:green;color:black" antialias="false"/>
<circle y="-100" diameter="6.86" x="-12.4" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<circle y="-90.81" diameter="6.86" x="-12.4" style="line-style:normal;line-weight:thin;filling:green;color:black" antialias="false"/>
<circle y="-90.81" diameter="6.86" x="-22.54" style="line-style:normal;line-weight:thin;filling:green;color:black" antialias="false"/>
<circle y="-98" diameter="12" x="6" style="line-style:normal;line-weight:hight;filling:lightgray;color:HTMLOrangeOrange" antialias="false"/>
<circle y="-93" diameter="2" x="11" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
</description>
</definition>
@@ -1,100 +1,97 @@
<definition height="210" hotspot_x="33" link_type="simple" type="element" width="60" version="0.90" hotspot_y="131">
<definition hotspot_y="131" height="210" width="60" type="element" link_type="simple" version="0.90" hotspot_x="33">
<names>
<name lang="fr">750-644</name>
<name lang="en">750-644</name>
<name lang="de">750-644</name>
<name lang="fr">750-644</name>
<name lang="cs">750-644</name>
<name lang="de">750-644</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">750-644</elementInformation>
<elementInformation show="1" name="description">RF-Transceiver Bluetooth</elementInformation>
<elementInformation show="1" name="designation">750-644</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon y24="66.5" y14="-124.5" x44="2" x47="10" y9="-126.5" x32="10" y33="67.5" y3="-120.5" x38="20" x45="2" x1="-6" y36="70.5" y39="-119.5" y44="-117.5" y19="73.5" y15="71.5" x18="-30" x2="-7" y29="70.5" antialias="false" y26="67.5" y11="-120.5" y35="70.5" y13="-124.5" x22="-22" y5="-117.5" x40="17" x7="-22" y28="73.5" y43="-117.5" x20="-14" y21="70.5" y12="-120.5" x31="2" y1="-119.5" x43="10" x10="-30" x48="-6" y7="-123.5" x13="-28" y20="73.5" x4="-14" x21="-14" x30="2" x36="24" x14="-24" x34="20" x15="-24" y16="71.5" x16="-28" x23="-22" y47="-126.5" y17="67.5" y48="-126.5" x12="-28" x24="-14" x27="-6" x28="10" y32="66.5" x19="-30" y27="73.5" x33="10" y41="-120.5" y25="67.5" x46="10" x29="10" y37="-123.5" style="line-style:normal;line-weight:thin;filling:white;color:black" x41="17" y23="66.5" x3="-7" x17="-28" y2="-119.5" y34="67.5" y30="70.5" x9="-14" x25="-14" y42="-120.5" y18="67.5" y4="-120.5" x37="24" x11="-30" x8="-14" y6="-117.5" x35="20" x42="10" y46="-123.5" x6="-22" y40="-119.5" x26="-6" y31="66.5" y8="-123.5" y22="70.5" y38="-123.5" x39="20" x5="-14" y10="-126.5" y45="-123.5"/>
<line length1="1.5" x1="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" length2="1.5" y2="-126.5" y1="73.5" end1="none" end2="none" x2="0"/>
<dynamic_text z="8" font="Sans Serif,4,-1,5,25,0,0,0,0,0" text_width="-1" keep_visual_rotation="true" x="-4.32" y="-50.5" Valignment="AlignVCenter" text_from="ElementInfo" uuid="{7e6b9aba-9db0-4037-a375-6029b90c44cb}" frame="false" rotation="0" Halignment="AlignHCenter">
<polygon y8="-117.5" antialias="false" x3="20" x12="-6" x13="-6" x5="17" x17="0" x11="10" y13="-120.5" x9="2" y18="71.5" y21="73.5" x25="2" x22="10" y2="-123.5" y19="67.5" x24="2" y16="-124.5" y30="70.5" y17="71.5" y5="-120.5" x1="24" y24="70.5" x26="10" y10="-123.5" x4="17" x8="2" x14="-4" x21="-6" y12="-126.5" x16="0" y9="-123.5" x2="20" y29="70.5" x15="-4" y15="-124.5" y4="-119.5" x27="10" y25="66.5" x19="-4" y26="66.5" y6="-120.5" x29="20" y27="67.5" y22="73.5" x20="-6" x6="10" x10="10" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="-117.5" x7="10" y1="-123.5" x28="20" x18="-4" y14="-120.5" y20="67.5" y23="70.5" y3="-119.5" y28="67.5" x30="24" y11="-126.5" x23="10"/>
<polygon y8="-117.5" antialias="false" x3="-4" x12="-30" x13="-30" x5="-7" x17="-24" x11="-14" y13="-120.5" x9="-22" y18="71.5" y21="73.5" x25="-22" x22="-14" y2="-123.5" y19="67.5" x24="-22" y16="-124.5" y30="70.5" y17="71.5" y5="-120.5" x1="0" y24="70.5" x26="-14" y10="-123.5" x4="-7" x8="-22" x14="-28" x21="-30" y12="-126.5" x16="-24" y9="-123.5" x2="-4" y29="70.5" x15="-28" y15="-124.5" y4="-119.5" x27="-14" y25="66.5" x19="-28" y26="66.5" y6="-120.5" x29="-4" y27="67.5" y22="73.5" x20="-30" x6="-14" x10="-14" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="-117.5" x7="-14" y1="-123.5" x28="-4" x18="-28" y14="-120.5" y20="67.5" y23="70.5" y3="-119.5" y28="67.5" x30="0" y11="-126.5" x23="-14"/>
<circle y="-101" diameter="12" x="6" style="line-style:normal;line-weight:hight;filling:lightgray;color:HTMLOrangeOrange" antialias="false"/>
<circle y="-96" diameter="2" x="11" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<rect y="-72.5" ry="0" height="8" width="7" rx="0" x="12" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="34.4" ry="0" height="8" width="7" rx="0" x="-12" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-39.4" ry="0" height="8" width="7" rx="0" x="-12" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-2.5" ry="0" height="8" width="7" rx="0" x="12" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-39.4" ry="0" height="8" width="7" rx="0" x="-22.5" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-2.5" ry="0" height="8" width="7" rx="0" x="1.5" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="34.4" ry="0" height="8" width="7" rx="0" x="-22.5" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-72.5" ry="0" height="8" width="7" rx="0" x="1.5" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-72.5" ry="0" height="8" width="7" rx="0" x="-12" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="34.4" ry="0" height="8" width="7" rx="0" x="12" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-39.4" ry="0" height="8" width="7" rx="0" x="12" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-2.5" ry="0" height="8" width="7" rx="0" x="-12" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-39.4" ry="0" height="8" width="7" rx="0" x="1.5" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-2.5" ry="0" height="8" width="7" rx="0" x="-22.5" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="34.4" ry="0" height="8" width="7" rx="0" x="1.5" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<rect y="-72.5" ry="0" height="8" width="7" rx="0" x="-22.5" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/>
<polygon closed="false" y1="-115" y2="-115" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-24" antialias="false" x1="24"/>
<polygon closed="false" y1="-107" y2="-107" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-24" antialias="false" x1="24"/>
<polygon closed="false" y1="-12.5" y2="-12.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-24" antialias="false" x1="24"/>
<polygon closed="false" y1="24.5" y2="24.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-24" antialias="false" x1="24"/>
<polygon closed="false" y1="32.5" y2="32.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-24" antialias="false" x1="24"/>
<polygon closed="false" y1="-41.5" y2="-41.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-24" antialias="false" x1="24"/>
<polygon closed="false" y1="-4.5" y2="-4.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-24" antialias="false" x1="24"/>
<polygon closed="false" y1="-49.5" y2="-49.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-24" antialias="false" x1="24"/>
<polygon closed="false" y1="-74.5" y2="-74.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-24" antialias="false" x1="24"/>
<polygon closed="false" y1="-82.5" y2="-82.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-24" antialias="false" x1="24"/>
<polygon y8="-18.47" antialias="false" x3="1.12" x12="21.21" x13="19.48" x5="7.18" x17="10.82" x11="21.21" y13="-28.29" x9="13.06" y18="-26.7" y21="-29.08" x22="3.1" y2="-20.07" y19="-27.81" x24="0.75" y16="-28.6" y17="-27.76" y5="-17.41" x1="0" y24="-27.82" y10="-17.41" x4="2.96" x8="11.19" x14="17.08" x21="7.02" y12="-26.05" x16="11.88" y9="-17.41" x2="0" x15="13.12" y15="-29.05" y4="-17.41" x19="9.34" y6="-18.43" y22="-29.08" x20="8.31" x6="9.02" x10="18.49" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="-20.07" x7="10.1" y1="-26.74" x18="10.1" y14="-29.05" y20="-28.65" y23="-28.65" y3="-18.47" y11="-20.09" x23="1.83"/>
<polygon y8="18.12" antialias="false" x3="-22.96" x12="-2.87" x13="-4.61" x5="-16.9" x17="-13.26" x11="-2.87" y13="8.3" x9="-11.02" y18="9.89" y21="7.51" x22="-20.97" y2="16.52" y19="8.78" x24="-23.31" y16="8" y17="8.83" y5="19.18" x1="-24" y24="8.77" y10="19.18" x4="-21.12" x8="-12.89" x14="-7" x21="-17.06" y12="10.54" x16="-12.2" y9="19.18" x2="-24" x15="-10.96" y15="7.54" y4="19.18" x19="-14.74" y6="18.16" y22="7.51" x20="-15.77" x6="-15.06" x10="-5.58" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="16.52" x7="-13.98" y1="9.85" x18="-13.98" y14="7.54" y20="7.94" y23="7.94" y3="18.12" y11="16.5" x23="-22.25"/>
<polygon y8="-51.63" antialias="false" x3="1.08" x12="21.17" x13="19.45" x5="7.16" x17="10.8" x11="21.17" y13="-61.45" x9="13.03" y18="-59.86" y21="-62.24" x22="3.07" y2="-53.23" y19="-60.97" x24="0.73" y16="-61.75" y17="-60.91" y5="-50.57" x1="0" y24="-60.98" y10="-50.57" x4="2.93" x8="11.16" x14="17.06" x21="7" y12="-59.2" x16="11.86" y9="-50.57" x2="0" x15="13.1" y15="-62.21" y4="-50.57" x19="9.32" y6="-51.58" y22="-62.24" x20="8.29" x6="9" x10="18.47" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="-53.22" x7="10.08" y1="-59.9" x18="10.08" y14="-62.21" y20="-61.81" y23="-61.81" y3="-51.62" y11="-53.25" x23="1.81"/>
<polygon y8="55.28" antialias="false" x3="1.05" x12="21.14" x13="19.42" x5="7.12" x17="10.77" x11="21.14" y13="45.46" x9="13" y18="47.05" y21="44.67" x22="3.04" y2="53.68" y19="45.94" x24="0.71" y16="45.15" y17="46" y5="56.34" x1="0" y24="45.93" y10="56.34" x4="2.9" x8="11.13" x14="17.02" x21="6.96" y12="47.7" x16="11.82" y9="56.34" x2="0" x15="13.06" y15="44.7" y4="56.34" x19="9.29" y6="55.32" y22="44.67" x20="8.26" x6="8.97" x10="18.43" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="53.68" x7="10.05" y1="47" x18="10.05" y14="44.7" y20="45.1" y23="45.09" y3="55.28" y11="53.66" x23="1.78"/>
<polygon y8="-18.47" antialias="false" x3="-22.88" x12="-2.79" x13="-4.52" x5="-16.82" x17="-13.18" x11="-2.79" y13="-28.29" x9="-10.94" y18="-26.7" y21="-29.08" x22="-20.9" y2="-20.07" y19="-27.81" x24="-23.25" y16="-28.6" y17="-27.76" y5="-17.41" x1="-24" y24="-27.82" y10="-17.41" x4="-21.04" x8="-12.81" x14="-6.92" x21="-16.98" y12="-26.05" x16="-12.12" y9="-17.41" x2="-24" x15="-10.88" y15="-29.05" y4="-17.41" x19="-14.66" y6="-18.43" y22="-29.08" x20="-15.69" x6="-14.98" x10="-5.51" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="-20.07" x7="-13.9" y1="-26.74" x18="-13.9" y14="-29.05" y20="-28.65" y23="-28.65" y3="-18.47" y11="-20.09" x23="-22.17"/>
<polygon y8="18.12" antialias="false" x3="1.04" x12="21.13" x13="19.39" x5="7.1" x17="10.74" x11="21.13" y13="8.3" x9="12.98" y18="9.89" y21="7.51" x22="3.03" y2="16.52" y19="8.78" x24="0.69" y16="8" y17="8.83" y5="19.18" x1="0" y24="8.77" y10="19.18" x4="2.88" x8="11.11" x14="17" x21="6.94" y12="10.54" x16="11.8" y9="19.18" x2="0" x15="13.04" y15="7.54" y4="19.18" x19="9.26" y6="18.16" y22="7.51" x20="8.23" x6="8.94" x10="18.42" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="16.52" x7="10.02" y1="9.85" x18="10.02" y14="7.54" y20="7.94" y23="7.94" y3="18.12" y11="16.5" x23="1.75"/>
<polygon y8="-51.63" antialias="false" x3="-22.92" x12="-2.83" x13="-4.55" x5="-16.84" x17="-13.2" x11="-2.83" y13="-61.45" x9="-10.97" y18="-59.86" y21="-62.24" x22="-20.93" y2="-53.23" y19="-60.97" x24="-23.27" y16="-61.75" y17="-60.91" y5="-50.57" x1="-24" y24="-60.98" y10="-50.57" x4="-21.07" x8="-12.84" x14="-6.94" x21="-17" y12="-59.2" x16="-12.14" y9="-50.57" x2="-24" x15="-10.9" y15="-62.21" y4="-50.57" x19="-14.68" y6="-51.58" y22="-62.24" x20="-15.71" x6="-15" x10="-5.53" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="-53.22" x7="-13.92" y1="-59.9" x18="-13.92" y14="-62.21" y20="-61.81" y23="-61.81" y3="-51.62" y11="-53.25" x23="-22.19"/>
<polygon y8="55.28" antialias="false" x3="-22.95" x12="-2.86" x13="-4.58" x5="-16.88" x17="-13.23" x11="-2.86" y13="45.46" x9="-11" y18="47.05" y21="44.67" x22="-20.96" y2="53.68" y19="45.94" x24="-23.29" y16="45.15" y17="46" y5="56.34" x1="-24" y24="45.93" y10="56.34" x4="-21.1" x8="-12.87" x14="-6.98" x21="-17.04" y12="47.7" x16="-12.18" y9="56.34" x2="-24" x15="-10.94" y15="44.7" y4="56.34" x19="-14.71" y6="55.32" y22="44.67" x20="-15.74" x6="-15.03" x10="-5.57" style="line-style:normal;line-weight:thin;filling:white;color:black" y7="53.68" x7="-13.95" y1="47" x18="-13.95" y14="44.7" y20="45.1" y23="45.09" y3="55.28" y11="53.66" x23="-22.22"/>
<polygon x5="-10.9" y10="9.69" x15="-10.68" antialias="false" y7="15.45" y12="6.88" x10="-6.81" x7="-4.63" y3="11.7" x8="-4.63" y2="10.36" x16="-10.68" y11="7.98" y6="17.24" y4="15.45" y15="6.88" x2="-11.82" y13="6" y16="7.98" x4="-12.7" y9="10.36" x11="-6.65" x14="-9.78" x3="-12.7" y5="17.24" x9="-5.52" y8="11.7" y1="9.69" x1="-10.5" y14="6" x6="-6.44" x12="-6.65" x13="-7.56" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="-21.25" y10="9.69" x15="-21.04" antialias="false" y7="15.45" y12="6.88" x10="-17.16" x7="-15" y3="11.7" x8="-15" y2="10.36" x16="-21.04" y11="7.98" y6="17.24" y4="15.45" y15="6.88" x2="-22.17" y13="6" y16="7.98" x4="-23.05" y9="10.36" x11="-17" x14="-20.13" x3="-23.05" y5="17.24" x9="-15.87" y8="11.7" y1="9.69" x1="-20.85" y14="6" x6="-16.79" x12="-17" x13="-17.91" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="13.18" y10="-26.9" x15="13.39" antialias="false" y7="-21.14" y12="-29.71" x10="17.27" x7="19.44" y3="-24.89" x8="19.44" y2="-26.23" x16="13.39" y11="-28.61" y6="-19.35" y4="-21.14" y15="-29.71" x2="12.26" y13="-30.6" y16="-28.61" x4="11.38" y9="-26.23" x11="17.43" x14="14.3" x3="11.38" y5="-19.35" x9="18.56" y8="-24.89" y1="-26.9" x1="13.58" y14="-30.6" x6="17.64" x12="17.43" x13="16.52" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="2.83" y10="-26.9" x15="3.05" antialias="false" y7="-21.14" y12="-29.71" x10="6.93" x7="9.09" y3="-24.89" x8="9.09" y2="-26.23" x16="3.05" y11="-28.61" y6="-19.35" y4="-21.14" y15="-29.71" x2="1.9" y13="-30.6" y16="-28.61" x4="1.02" y9="-26.23" x11="7.07" x14="3.95" x3="1.02" y5="-19.35" x9="8.21" y8="-24.89" y1="-26.9" x1="3.22" y14="-30.6" x6="7.28" x12="7.07" x13="6.18" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="-10.87" y10="46.85" x15="-10.66" antialias="false" y7="52.61" y12="44.04" x10="-6.78" x7="-4.61" y3="48.86" x8="-4.61" y2="47.52" x16="-10.66" y11="45.14" y6="54.4" y4="52.61" y15="44.04" x2="-11.8" y13="43.15" y16="45.14" x4="-12.68" y9="47.52" x11="-6.62" x14="-9.76" x3="-12.68" y5="54.4" x9="-5.49" y8="48.86" y1="46.85" x1="-10.48" y14="43.15" x6="-6.42" x12="-6.62" x13="-7.53" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="-21.22" y10="46.85" x15="-21" antialias="false" y7="52.61" y12="44.04" x10="-17.13" x7="-14.97" y3="48.86" x8="-14.97" y2="47.52" x16="-21" y11="45.14" y6="54.4" y4="52.61" y15="44.04" x2="-22.14" y13="43.15" y16="45.14" x4="-23.03" y9="47.52" x11="-16.98" x14="-20.11" x3="-23.03" y5="54.4" x9="-15.85" y8="48.86" y1="46.85" x1="-20.83" y14="43.15" x6="-16.77" x12="-16.98" x13="-17.88" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="-10.84" y10="-60.06" x15="-10.63" antialias="false" y7="-54.29" y12="-62.87" x10="-6.75" x7="-4.57" y3="-58.05" x8="-4.57" y2="-59.39" x16="-10.63" y11="-61.77" y6="-52.5" y4="-54.29" y15="-62.87" x2="-11.77" y13="-63.76" y16="-61.77" x4="-12.65" y9="-59.39" x11="-6.6" x14="-9.73" x3="-12.65" y5="-52.5" x9="-5.46" y8="-58.05" y1="-60.06" x1="-10.45" y14="-63.76" x6="-6.39" x12="-6.6" x13="-7.5" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="-21.19" y10="-60.06" x15="-20.98" antialias="false" y7="-54.29" y12="-62.87" x10="-17.11" x7="-14.93" y3="-58.05" x8="-14.93" y2="-59.39" x16="-20.98" y11="-61.77" y6="-52.5" y4="-54.29" y15="-62.87" x2="-22.11" y13="-63.76" y16="-61.77" x4="-23" y9="-59.39" x11="-16.94" x14="-20.08" x3="-23" y5="-52.5" x9="-15.81" y8="-58.05" y1="-60.06" x1="-20.79" y14="-63.76" x6="-16.73" x12="-16.94" x13="-17.86" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="13.1" y10="9.69" x15="13.32" antialias="false" y7="15.45" y12="6.88" x10="17.19" x7="19.37" y3="11.7" x8="19.37" y2="10.36" x16="13.32" y11="7.98" y6="17.24" y4="15.45" y15="6.88" x2="12.18" y13="6" y16="7.98" x4="11.3" y9="10.36" x11="17.35" x14="14.22" x3="11.3" y5="17.24" x9="18.48" y8="11.7" y1="9.69" x1="13.5" y14="6" x6="17.56" x12="17.35" x13="16.44" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="2.75" y10="9.69" x15="2.96" antialias="false" y7="15.45" y12="6.88" x10="6.84" x7="9" y3="11.7" x8="9" y2="10.36" x16="2.96" y11="7.98" y6="17.24" y4="15.45" y15="6.88" x2="1.83" y13="6" y16="7.98" x4="0.95" y9="10.36" x11="7" x14="3.87" x3="0.95" y5="17.24" x9="8.13" y8="11.7" y1="9.69" x1="3.15" y14="6" x6="7.21" x12="7" x13="6.09" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="-10.82" y10="-26.9" x15="-10.61" antialias="false" y7="-21.14" y12="-29.71" x10="-6.73" x7="-4.56" y3="-24.89" x8="-4.56" y2="-26.23" x16="-10.61" y11="-28.61" y6="-19.35" y4="-21.14" y15="-29.71" x2="-11.74" y13="-30.6" y16="-28.61" x4="-12.62" y9="-26.23" x11="-6.57" x14="-9.7" x3="-12.62" y5="-19.35" x9="-5.44" y8="-24.89" y1="-26.9" x1="-10.42" y14="-30.6" x6="-6.36" x12="-6.57" x13="-7.48" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="-21.17" y10="-26.9" x15="-20.95" antialias="false" y7="-21.14" y12="-29.71" x10="-17.07" x7="-14.91" y3="-24.89" x8="-14.91" y2="-26.23" x16="-20.95" y11="-28.61" y6="-19.35" y4="-21.14" y15="-29.71" x2="-22.1" y13="-30.6" y16="-28.61" x4="-22.98" y9="-26.23" x11="-16.93" x14="-20.05" x3="-22.98" y5="-19.35" x9="-15.79" y8="-24.89" y1="-26.9" x1="-20.78" y14="-30.6" x6="-16.72" x12="-16.93" x13="-17.82" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="13.13" y10="46.85" x15="13.34" antialias="false" y7="52.61" y12="44.04" x10="17.22" x7="19.39" y3="48.86" x8="19.39" y2="47.52" x16="13.34" y11="45.14" y6="54.4" y4="52.61" y15="44.04" x2="12.2" y13="43.15" y16="45.14" x4="11.32" y9="47.52" x11="17.38" x14="14.24" x3="11.32" y5="54.4" x9="18.51" y8="48.86" y1="46.85" x1="13.52" y14="43.15" x6="17.58" x12="17.38" x13="16.47" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="2.78" y10="46.85" x15="3" antialias="false" y7="52.61" y12="44.04" x10="6.87" x7="9.03" y3="48.86" x8="9.03" y2="47.52" x16="3" y11="45.14" y6="54.4" y4="52.61" y15="44.04" x2="1.86" y13="43.15" y16="45.14" x4="0.97" y9="47.52" x11="7.02" x14="3.89" x3="0.97" y5="54.4" x9="8.15" y8="48.86" y1="46.85" x1="3.17" y14="43.15" x6="7.23" x12="7.02" x13="6.12" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="13.16" y10="-60.06" x15="13.37" antialias="false" y7="-54.29" y12="-62.87" x10="17.25" x7="19.43" y3="-58.05" x8="19.43" y2="-59.39" x16="13.37" y11="-61.77" y6="-52.5" y4="-54.29" y15="-62.87" x2="12.23" y13="-63.76" y16="-61.77" x4="11.35" y9="-59.39" x11="17.4" x14="14.27" x3="11.35" y5="-52.5" x9="18.54" y8="-58.05" y1="-60.06" x1="13.55" y14="-63.76" x6="17.61" x12="17.4" x13="16.5" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon x5="2.81" y10="-60.06" x15="3.02" antialias="false" y7="-54.29" y12="-62.87" x10="6.89" x7="9.07" y3="-58.05" x8="9.07" y2="-59.39" x16="3.02" y11="-61.77" y6="-52.5" y4="-54.29" y15="-62.87" x2="1.89" y13="-63.76" y16="-61.77" x4="1" y9="-59.39" x11="7.06" x14="3.92" x3="1" y5="-52.5" x9="8.19" y8="-58.05" y1="-60.06" x1="3.21" y14="-63.76" x6="7.27" x12="7.06" x13="6.14" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<rect y="-104.5" ry="0" height="20" width="18" rx="0" x="-21" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false"/>
<rect y="-98.5" ry="0" height="3" width="5.72" rx="0" x="-10.55" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/>
<rect y="-88.5" ry="0" height="3" width="5.72" rx="0" x="-10.55" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/>
<rect y="-93.5" ry="0" height="3" width="5.72" rx="0" x="-10.55" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/>
<rect y="-103.5" ry="0" height="3" width="5.72" rx="0" x="-10.55" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false"/>
<rect y="-98.5" ry="0" height="3" width="5.72" rx="0" x="-18.54" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/>
<rect y="-88.5" ry="0" height="3" width="5.72" rx="0" x="-18.54" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/>
<rect y="-93.5" ry="0" height="3" width="5.72" rx="0" x="-18.54" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/>
<rect y="-103.5" ry="0" height="3" width="5.72" rx="0" x="-18.54" style="line-style:normal;line-weight:thin;filling:green;color:black" antialias="false"/>
<text y="-101" text="A" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-23.7" rotation="0" color="#000000"/>
<text y="-96" text="B" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-23.7" rotation="0" color="#000000"/>
<text y="-91" text="C" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-23.7" rotation="0" color="#000000"/>
<text y="-86" text="D" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-23.7" rotation="0" color="#000000"/>
<text y="-101" text="E" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-2.3" rotation="0" color="#000000"/>
<text y="-96" text="F" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-2.21" rotation="0" color="#000000"/>
<text y="-91" text="G" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-2.46" rotation="0" color="#000000"/>
<text y="-86" text="H" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-2.37" rotation="0" color="#000000"/>
<rect y="-3.3" ry="0" height="18.4" width="2.5" rx="0" x="-2.5" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false"/>
<rect y="-3.3" ry="0" height="18.4" width="2.5" rx="0" x="21.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false"/>
<polygon closed="false" y1="6.13" y2="6.13" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="0" antialias="false" x1="-2.5"/>
<text y="63.26" text="750-644" font="Sans Serif,2.86,-1,5,50,0,0,0,0,0" x="-8.27" rotation="0" color="#000000"/>
<dynamic_text text_width="-1" y="-20" frame="false" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" keep_visual_rotation="false" Valignment="AlignTop" x="-4" rotation="0" uuid="{5c1d7a28-068b-4e51-af72-ad553509896c}" z="91" text_from="ElementInfo" Halignment="AlignHCenter">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="12.27" y="-72.57" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-12.04" y="-72.57" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="12.27" y="34.39" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-11.94" y="34.39" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="12.27" y="-39.41" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-11.94" y="-39.41" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="12.27" y="-2.48" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-11.94" y="-2.48" width="7.03" ry="0"/>
<polygon y9="56.34" x18="10.3" x14="17.27" x5="7.38" antialias="false" x17="11.02" y6="55.32" y11="53.66" x10="18.68" x20="8.51" y7="53.68" y16="45.15" y24="45.93" y19="45.94" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="46" x23="2.02" y13="45.46" x21="7.22" x1="0.22" y3="55.28" y20="45.1" x4="3.15" y23="45.09" x22="3.29" x3="1.3" y1="47" x12="21.39" y12="47.7" x9="13.26" y8="55.28" x7="10.3" x11="21.39" y14="44.7" y5="56.34" y18="47.05" y2="53.68" y4="56.34" x6="9.22" y15="44.7" x16="12.08" x24="0.95" x15="13.32" x13="19.68" y21="44.67" x19="9.55" y10="56.34" x2="0.22" x8="11.38" y22="44.67"/>
<polygon y9="56.34" x18="-13.92" x14="-6.94" x5="-16.83" antialias="false" x17="-13.19" y6="55.32" y11="53.66" x10="-5.53" x20="-15.71" y7="53.68" y16="45.15" y24="45.93" y19="45.94" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="46" x23="-22.19" y13="45.46" x21="-17" x1="-24" y3="55.28" y20="45.1" x4="-21.06" y23="45.09" x22="-20.92" x3="-22.9" y1="47" x12="-2.81" y12="47.7" x9="-10.96" y8="55.28" x7="-13.92" x11="-2.81" y14="44.7" y5="56.34" y18="47.05" y2="53.68" y4="56.34" x6="-15" y15="44.7" x16="-12.14" x24="-23.26" x15="-10.89" x13="-4.55" y21="44.67" x19="-14.67" y10="56.34" x2="-24" x8="-12.82" y22="44.67"/>
<polygon y9="-17.41" x18="10.26" x14="17.24" x5="7.34" antialias="false" x17="10.97" y6="-18.43" y11="-20.09" x10="18.65" x20="8.47" y7="-20.07" y16="-28.6" y24="-27.82" y19="-27.81" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="-27.76" x23="1.98" y13="-28.29" x21="7.18" x1="0.17" y3="-18.47" y20="-28.65" x4="3.1" y23="-28.65" x22="3.25" x3="1.26" y1="-26.74" x12="21.35" y12="-26.05" x9="13.21" y8="-18.47" x7="10.26" x11="21.35" y14="-29.05" y5="-17.41" y18="-26.7" y2="-20.07" y4="-17.41" x6="9.18" y15="-29.05" x16="12.03" x24="0.9" x15="13.27" x13="19.62" y21="-29.08" x19="9.49" y10="-17.41" x2="0.17" x8="11.34" y22="-29.08"/>
<polygon y9="-17.41" x18="-13.96" x14="-6.98" x5="-16.87" antialias="false" x17="-13.24" y6="-18.43" y11="-20.09" x10="-5.57" x20="-15.74" y7="-20.07" y16="-28.6" y24="-27.82" y19="-27.81" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="-27.76" x23="-22.24" y13="-28.29" x21="-17.03" x1="-24" y3="-18.47" y20="-28.65" x4="-21.1" y23="-28.65" x22="-20.97" x3="-22.96" y1="-26.74" x12="-2.87" y12="-26.05" x9="-11" y8="-18.47" x7="-13.96" x11="-2.87" y14="-29.05" y5="-17.41" y18="-26.7" y2="-20.07" y4="-17.41" x6="-15.03" y15="-29.05" x16="-12.19" x24="-23.31" x15="-10.94" x13="-4.59" y21="-29.08" x19="-14.72" y10="-17.41" x2="-24" x8="-12.88" y22="-29.08"/>
<polygon y9="19.18" x18="-13.94" x14="-6.97" x5="-16.85" antialias="false" x17="-13.22" y6="18.16" y11="16.5" x10="-5.55" x20="-15.73" y7="16.52" y16="8" y24="8.77" y19="8.78" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="8.83" x23="-22.21" y13="8.3" x21="-17" x1="-24" y3="18.12" y20="7.94" x4="-21.08" y23="7.94" x22="-20.94" x3="-22.92" y1="9.85" x12="-2.84" y12="10.54" x9="-10.98" y8="18.12" x7="-13.94" x11="-2.84" y14="7.54" y5="19.18" y18="9.89" y2="16.52" y4="19.18" x6="-15" y15="7.54" x16="-12.15" x24="-23.28" x15="-10.91" x13="-4.56" y21="7.51" x19="-14.69" y10="19.18" x2="-24" x8="-12.85" y22="7.51"/>
<polygon y9="19.18" x18="10.27" x14="17.26" x5="7.35" antialias="false" x17="11" y6="18.16" y11="16.5" x10="18.67" x20="8.48" y7="16.52" y16="8" y24="8.77" y19="8.78" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="8.83" x23="2" y13="8.3" x21="7.19" x1="0.19" y3="18.12" y20="7.94" x4="3.13" y23="7.94" x22="3.27" x3="1.28" y1="9.85" x12="21.37" y12="10.54" x9="13.24" y8="18.12" x7="10.27" x11="21.37" y14="7.54" y5="19.18" y18="9.89" y2="16.52" y4="19.18" x6="9.19" y15="7.54" x16="12.05" x24="0.93" x15="13.29" x13="19.64" y21="7.51" x19="9.51" y10="19.18" x2="0.19" x8="11.36" y22="7.51"/>
<polygon x7="-14.94" y6="17.24" y7="15.45" y12="6.88" y8="11.7" x5="-21.21" x4="-23" y14="6" y9="10.36" y13="6" x3="-23" y16="7.98" x1="-20.81" x13="-17.87" x14="-20.1" x10="-17.12" y5="17.24" x15="-21" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-22.14" x8="-14.94" antialias="false" x16="-21" y2="10.36" x11="-16.97" y15="6.88" y3="11.7" y1="9.69" x12="-16.97" y10="9.69" x9="-15.83" y4="15.45" x6="-16.76" y11="7.98"/>
<polygon x7="9.26" y6="17.24" y7="15.45" y12="6.88" y8="11.7" x5="3" x4="1.19" y14="6" y9="10.36" y13="6" x3="1.19" y16="7.98" x1="3.4" x13="6.34" x14="4.12" x10="7.09" y5="17.24" x15="3.21" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="2.08" x8="9.26" antialias="false" x16="3.21" y2="10.36" x11="7.24" y15="6.88" y3="11.7" y1="9.69" x12="7.24" y10="9.69" x9="8.38" y4="15.45" x6="7.45" y11="7.98"/>
<polygon x7="-14.98" y6="-19.35" y7="-21.14" y12="-29.71" y8="-24.89" x5="-21.24" x4="-23.03" y14="-30.6" y9="-26.23" y13="-30.6" x3="-23.03" y16="-28.61" x1="-20.83" x13="-17.9" x14="-20.12" x10="-17.15" y5="-19.35" x15="-21" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-22.15" x8="-14.98" antialias="false" x16="-21" y2="-26.23" x11="-17" y15="-29.71" y3="-24.89" y1="-26.9" x12="-17" y10="-26.9" x9="-15.85" y4="-21.14" x6="-16.78" y11="-28.61"/>
<polygon x7="9.24" y6="-19.35" y7="-21.14" y12="-29.71" y8="-24.89" x5="2.98" x4="1.17" y14="-30.6" y9="-26.23" y13="-30.6" x3="1.17" y16="-28.61" x1="3.37" x13="6.32" x14="4.09" x10="7.07" y5="-19.35" x15="3.19" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="2.05" x8="9.24" antialias="false" x16="3.19" y2="-26.23" x11="7.22" y15="-29.71" y3="-24.89" y1="-26.9" x12="7.22" y10="-26.9" x9="8.36" y4="-21.14" x6="7.43" y11="-28.61"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="2.16" y="-39.41" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-22.06" y="-39.41" width="7.03" ry="0"/>
<polygon y9="-50.57" x18="10.23" x14="17.2" x5="7.31" antialias="false" x17="10.95" y6="-51.58" y11="-53.25" x10="18.61" x20="8.44" y7="-53.22" y16="-61.75" y24="-60.98" y19="-60.97" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="-60.91" x23="1.96" y13="-61.45" x21="7.15" x1="0.15" y3="-51.62" y20="-61.81" x4="3.08" y23="-61.81" x22="3.22" x3="1.23" y1="-59.9" x12="21.32" y12="-59.2" x9="13.18" y8="-51.63" x7="10.23" x11="21.32" y14="-62.21" y5="-50.57" y18="-59.86" y2="-53.23" y4="-50.57" x6="9.15" y15="-62.21" x16="12" x24="0.88" x15="13.26" x13="19.6" y21="-62.24" x19="9.47" y10="-50.57" x2="0.15" x8="11.32" y22="-62.24"/>
<polygon y9="-50.57" x18="-14" x14="-7" x5="-16.9" antialias="false" x17="-13.26" y6="-51.58" y11="-53.25" x10="-5.6" x20="-15.78" y7="-53.22" y16="-61.75" y24="-60.98" y19="-60.97" style="line-style:normal;line-weight:thin;filling:gray;color:black" y17="-60.91" x23="-22.26" y13="-61.45" x21="-17.06" x1="-24" y3="-51.62" y20="-61.81" x4="-21.12" y23="-61.81" x22="-21" x3="-22.98" y1="-59.9" x12="-2.89" y12="-59.2" x9="-11.03" y8="-51.63" x7="-14" x11="-2.89" y14="-62.21" y5="-50.57" y18="-59.86" y2="-53.23" y4="-50.57" x6="-15.06" y15="-62.21" x16="-12.21" x24="-23.33" x15="-10.97" x13="-4.62" y21="-62.24" x19="-14.74" y10="-50.57" x2="-24" x8="-12.89" y22="-62.24"/>
<polygon x7="-14.92" y6="54.4" y7="52.61" y12="44.04" y8="48.86" x5="-21.19" x4="-23" y14="43.15" y9="47.52" y13="43.15" x3="-23" y16="45.14" x1="-20.8" x13="-17.85" x14="-20.06" x10="-17.1" y5="54.4" x15="-20.98" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-22.12" x8="-14.92" antialias="false" x16="-20.98" y2="47.52" x11="-16.94" y15="44.04" y3="48.86" y1="46.85" x12="-16.94" y10="46.85" x9="-15.81" y4="52.61" x6="-16.74" y11="45.14"/>
<polygon x7="9.28" y6="54.4" y7="52.61" y12="44.04" y8="48.86" x5="3.02" x4="1.22" y14="43.15" y9="47.52" y13="43.15" x3="1.22" y16="45.14" x1="3.42" x13="6.36" x14="4.14" x10="7.11" y5="54.4" x15="3.24" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="2.1" x8="9.28" antialias="false" x16="3.24" y2="47.52" x11="7.27" y15="44.04" y3="48.86" y1="46.85" x12="7.27" y10="46.85" x9="8.4" y4="52.61" x6="7.48" y11="45.14"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="2.16" y="-2.48" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-22.06" y="-2.48" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="2.16" y="34.39" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-22.06" y="34.39" width="7.03" ry="0"/>
<polygon x7="19.64" y6="54.4" y7="52.61" y12="44.04" y8="48.86" x5="13.38" x4="11.58" y14="43.15" y9="47.52" y13="43.15" x3="11.58" y16="45.14" x1="13.77" x13="16.72" x14="14.5" x10="17.47" y5="54.4" x15="13.59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="12.45" x8="19.64" antialias="false" x16="13.59" y2="47.52" x11="17.62" y15="44.04" y3="48.86" y1="46.85" x12="17.62" y10="46.85" x9="18.76" y4="52.61" x6="17.84" y11="45.14"/>
<polygon x7="-4.58" y6="54.4" y7="52.61" y12="44.04" y8="48.86" x5="-10.83" x4="-12.64" y14="43.15" y9="47.52" y13="43.15" x3="-12.64" y16="45.14" x1="-10.44" x13="-7.49" x14="-9.72" x10="-6.74" y5="54.4" x15="-10.62" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-11.75" x8="-4.58" antialias="false" x16="-10.62" y2="47.52" x11="-6.58" y15="44.04" y3="48.86" y1="46.85" x12="-6.58" y10="46.85" x9="-5.46" y4="52.61" x6="-6.38" y11="45.14"/>
<polygon x7="-4.62" y6="-19.35" y7="-21.14" y12="-29.71" y8="-24.89" x5="-10.88" x4="-12.69" y14="-30.6" y9="-26.23" y13="-30.6" x3="-12.69" y16="-28.61" x1="-10.48" x13="-7.54" x14="-9.77" x10="-6.79" y5="-19.35" x15="-10.66" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-11.81" x8="-4.62" antialias="false" x16="-10.66" y2="-26.23" x11="-6.64" y15="-29.71" y3="-24.89" y1="-26.9" x12="-6.64" y10="-26.9" x9="-5.49" y4="-21.14" x6="-6.43" y11="-28.61"/>
<polygon x7="19.59" y6="-19.35" y7="-21.14" y12="-29.71" y8="-24.89" x5="13.34" x4="11.53" y14="-30.6" y9="-26.23" y13="-30.6" x3="11.53" y16="-28.61" x1="13.74" x13="16.68" x14="14.45" x10="17.43" y5="-19.35" x15="13.54" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="12.42" x8="19.59" antialias="false" x16="13.54" y2="-26.23" x11="17.58" y15="-29.71" y3="-24.89" y1="-26.9" x12="17.58" y10="-26.9" x9="18.71" y4="-21.14" x6="17.79" y11="-28.61"/>
<polygon x7="-4.6" y6="17.24" y7="15.45" y12="6.88" y8="11.7" x5="-10.86" x4="-12.66" y14="6" y9="10.36" y13="6" x3="-12.66" y16="7.98" x1="-10.46" x13="-7.52" x14="-9.73" x10="-6.77" y5="17.24" x15="-10.64" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-11.79" x8="-4.6" antialias="false" x16="-10.64" y2="10.36" x11="-6.62" y15="6.88" y3="11.7" y1="9.69" x12="-6.62" y10="9.69" x9="-5.48" y4="15.45" x6="-6.4" y11="7.98"/>
<polygon x7="19.62" y6="17.24" y7="15.45" y12="6.88" y8="11.7" x5="13.35" x4="11.55" y14="6" y9="10.36" y13="6" x3="11.55" y16="7.98" x1="13.76" x13="16.69" x14="14.47" x10="17.44" y5="17.24" x15="13.58" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="12.43" x8="19.62" antialias="false" x16="13.58" y2="10.36" x11="17.6" y15="6.88" y3="11.7" y1="9.69" x12="17.6" y10="9.69" x9="18.74" y4="15.45" x6="17.82" y11="7.98"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="24.44" y1="24.44" x2="24"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="32.44" y1="32.44" x2="24"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-12.56" y1="-12.56" x2="24"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-4.56" y1="-4.56" x2="24"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-49.57" y1="-49.57" x2="24"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-41.56" y1="-41.56" x2="24"/>
<polygon closed="false" x1="24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-82.56" y1="-82.56" x2="-24"/>
<polygon closed="false" x1="-24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-74.57" y1="-74.57" x2="24"/>
<polygon x1="21.39" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black" y3="15.57" y2="-2.7" y1="-2.7" x3="24.25" x4="21.39" x2="24.25" y4="15.57"/>
<polygon x1="-2.93" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" y3="15.57" y2="-2.7" y1="-2.7" x3="-0.07" x4="-2.93" x2="-0.07" y4="15.57"/>
<polygon closed="false" x1="-2.94" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="6.13" y1="6.13" x2="-0.06"/>
<polygon closed="false" x1="21.39" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="6.13" y1="6.13" x2="24.26"/>
<polygon x7="9.22" y6="-52.5" y7="-54.29" y12="-62.87" y8="-58.05" x5="2.96" x4="1.15" y14="-63.76" y9="-59.39" y13="-63.76" x3="1.15" y16="-61.77" x1="3.35" x13="6.29" x14="4.07" x10="7.05" y5="-52.5" x15="3.17" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="2.03" x8="9.22" antialias="false" x16="3.17" y2="-59.39" x11="7.2" y15="-62.87" y3="-58.05" y1="-60.06" x12="7.2" y10="-60.06" x9="8.34" y4="-54.29" x6="7.42" y11="-61.77"/>
<polygon x7="-15.09" y6="-52.5" y7="-54.29" y12="-62.87" y8="-58.05" x5="-21.36" x4="-23.16" y14="-63.76" y9="-59.39" y13="-63.76" x3="-23.16" y16="-61.77" x1="-20.95" x13="-18.02" x14="-20.24" x10="-17.27" y5="-52.5" x15="-21.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-22.27" x8="-15.09" antialias="false" x16="-21.15" y2="-59.39" x11="-17.11" y15="-62.87" y3="-58.05" y1="-60.06" x12="-17.11" y10="-60.06" x9="-15.97" y4="-54.29" x6="-16.9" y11="-61.77"/>
<polygon x7="19.57" y6="-52.5" y7="-54.29" y12="-62.87" y8="-58.05" x5="13.32" x4="11.51" y14="-63.76" y9="-59.39" y13="-63.76" x3="11.51" y16="-61.77" x1="13.7" x13="16.66" x14="14.43" x10="17.41" y5="-52.5" x15="13.52" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="12.38" x8="19.57" antialias="false" x16="13.52" y2="-59.39" x11="17.55" y15="-62.87" y3="-58.05" y1="-60.06" x12="17.55" y10="-60.06" x9="18.69" y4="-54.29" x6="17.76" y11="-61.77"/>
<polygon x7="-4.64" y6="-52.5" y7="-54.29" y12="-62.87" y8="-58.05" x5="-10.89" x4="-12.71" y14="-63.76" y9="-59.39" y13="-63.76" x3="-12.71" y16="-61.77" x1="-10.5" x13="-7.56" x14="-9.79" x10="-6.81" y5="-52.5" x15="-10.69" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-11.82" x8="-4.64" antialias="false" x16="-10.69" y2="-59.39" x11="-6.65" y15="-62.87" y3="-58.05" y1="-60.06" x12="-6.65" y10="-60.06" x9="-5.53" y4="-54.29" x6="-6.45" y11="-61.77"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="2.16" y="-72.57" width="7.03" ry="0"/>
<rect height="8" rx="0" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="-22.16" y="-72.57" width="7.03" ry="0"/>
<polygon antialias="false" y3="-116.56" x1="0" y1="-102.56" y2="-102.56" x4="0" y4="-116.56" x2="24" x3="24" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-116.56" x1="-24.11" y1="-102.56" y2="-102.56" x4="-24.11" y4="-116.56" x2="0.11" x3="0.11" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-102.56" x1="-24.11" y1="-116.56" y2="-116.56" x4="-24.11" y4="-102.56" x2="0.11" x3="0.11" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<polygon antialias="false" y3="-112.13" x1="4.21" y1="-107.13" y2="-107.13" x4="4.21" y4="-112.13" x2="20.34" x3="20.34" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-112.13" x1="-20.06" y1="-107.13" y2="-107.13" x4="-20.06" y4="-112.13" x2="-3.93" x3="-3.93" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-107.13" x1="4.21" y1="-112.13" y2="-112.13" x4="4.21" y4="-107.13" x2="20.34" x3="20.34" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-107.13" x1="-20.06" y1="-112.13" y2="-112.13" x4="-20.06" y4="-107.13" x2="-3.93" x3="-3.93" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" x1="24.38" y1="-82.56" y2="-82.56" x2="0.16" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" x1="0.11" y1="-82.56" y2="-82.56" x2="-24.11" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" x1="0.16" y1="-102.06" y2="-102.06" x2="24.38" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" x1="-24.11" y1="-102.06" y2="-102.06" x2="0.11" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-105.56" x1="1.17" y1="-113.57" y2="-113.57" x4="1.17" y4="-105.56" x2="23.37" x3="23.37" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon antialias="false" y3="-105.56" x1="-23.1" y1="-113.57" y2="-113.57" x4="-23.1" y4="-105.56" x2="-0.9" x3="-0.9" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<text font="Sans Serif,2.86,-1,5,50,0,0,0,0,0" x="-8.27" rotation="0" text="750-644" color="#000000" y="63.26"/>
<text font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-23.7" rotation="0" text="A" color="#000000" y="-99.67"/>
<text font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-23.7" rotation="0" text="B" color="#000000" y="-90.52"/>
<text font="Sans Serif,3.43,-1,5,50,0,0,0,0,0" x="-4.25" rotation="0" text="C" color="#000000" y="-95.09"/>
<text font="Sans Serif,3.43,-1,5,50,0,0,0,0,0" x="-4.5" rotation="0" text="D" color="#000000" y="-85.95"/>
<circle antialias="false" x="-22.54" diameter="6.86" y="-100" style="line-style:normal;line-weight:thin;filling:green;color:black"/>
<circle antialias="false" x="-12.4" diameter="6.86" y="-100" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<circle antialias="false" x="-12.4" diameter="6.86" y="-90.81" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<circle antialias="false" x="-22.54" diameter="6.86" y="-90.81" style="line-style:normal;line-weight:thin;filling:white;color:black"/>
<circle antialias="false" x="6" diameter="12" y="-98" style="line-style:normal;line-weight:hight;filling:lightgray;color:HTMLOrangeOrange"/>
<circle antialias="false" x="11" diameter="2" y="-93" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
</description>
</definition>
@@ -1,6 +1,6 @@
<qet-directory>
<names>
<name lang="de">WAGO Kontakttechnik</name>
<name lang="de">WAGO</name>
<name lang="ch">WAGO Contact</name>
<name lang="cn">WAGO Electronic</name>
<name lang="cs">WAGO Elektro</name>
+150 -120
View File
@@ -3037,41 +3037,41 @@ that you create. Text and number inputs are
<translation>استعمل ألوان النظام</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>مشاريع</translation>
</message>
@@ -3081,47 +3081,47 @@ that you create. Text and number inputs are
<translation>استخدم إيماءات لوحة اللمس</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>مُعطّل</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translatorcomment>دقيقة</translatorcomment>
<translation>د</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>إبراز العناصر المُدمجة حديثا في اللوحة</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>ضمّن لكل عنصر معلومات حول مؤلفيه أو ترخيصه أو أي معلومات أخرى تراها مفيدة في حقل مجاني.
يمكنك هنا تحديد القيمة الافتراضية لهذا الحقل للعناصر التي ستقوم بإنشائها:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>يُطبّق عند الإطلاق التالي لـ QElectroTech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>تصدير نقاط التوصيل في التسمية</translation>
</message>
@@ -3131,62 +3131,62 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation>شكل</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>النسخ الاحتياطي التلقائي ) للمشاريع يُطبق في الإنطلاق التالي من QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation type="unfinished">مجموعات</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>إدارة العناصر</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation type="unfinished"></translation>
</message>
@@ -3201,91 +3201,96 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation type="unfinished">نصوص</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation type="unfinished">خطّ :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation></translation>
</message>
@@ -3295,133 +3300,158 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation>السماح بالتصغير لما بعد الصفحة</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>عام</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>النظام</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>العربية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>البرازيلي</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>الكتالونية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>التشيكية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>الألمانية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>دنماركية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>اليونانية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>الإنجليزية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>الإسبانية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>الفرنسية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>الكرواتية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>الإيطالية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>البولندية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>البرتغالية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>الرومانية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>الروسية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>السلوفينية</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>هولندا</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>بلجيكا- فلامون</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
@@ -5280,218 +5310,218 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>تحميل ... تهيئة ذاكرة التخزين المؤقت لأصناف العناصر </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>تحميل ... مُحرّر مُخطط</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>تحميل ... فتح الملفات</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished">RTL</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished">إطارات تعريف QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished">إطارات تعريف المستعمل</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>مخطط</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>كهربائي</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>إعدادات برنامج QElectrotech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>تحميل ...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>تحميل ...ايقونة systray</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;إنهاء</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;حجب</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>ا&amp;سترجاع</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;حجب كلّ محرري المخططات</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;استرجاع كل محرري المخطط</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;احجب كلّ محرري العنصر</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;استرجع كلّ محرري العنصر</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;احجب كلّ محرري إطار التعريف</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;استرجع كلّ محرري إطار التعريف</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;محرر تخطييط جديد</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;محرّر عنصر جديد</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>إغلاق تطبيق QElectrotech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>خفض QElectrotech في systray</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>إسترجاع QElectrotech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>محرري المخططات</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>محرري العناصر</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>محرري إطار التعريف</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;الملف التالي مُستعاد,&lt;br&gt;هل تريد فتحه ?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;تمّ استعادة الملفات التالية,&lt;br&gt;هل تريد فتحها ?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>استعادة الملف</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>إستعمال :</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
<translation>[خيارات] [ rملف]...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5507,26 +5537,26 @@ Options disponibles :
- الترخيص ......................... عرض الترخيص</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR عرّف مجلد صنف العناصر
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR عرّف مجلد مجموعة نماذج إطارات التعريف</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR عرّف مجلد الإعدادات</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR عرّف المجلد المحتوي على ملفات اللغة</translation>
@@ -8881,7 +8911,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
+150 -120
View File
@@ -3034,41 +3034,41 @@ Tkest en cijfers zijn ook beschikbaar
<translation>Gebruik de systeem kleuren</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation>Pad naar gebruikers collectie</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation>Pad naar gebruikers etiket</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation>Pad naar de algemene collectie</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation>Standaard</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>Bladeren ...</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>(Herlaad elementverzamelingen om wijzigingen toe te passen)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Projecten</translation>
</message>
@@ -3078,42 +3078,42 @@ Tkest en cijfers zijn ook beschikbaar
<translation>Gebruik de gebaren voor touchpad</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>Gebruik folionummers volgens hun posite in het project</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation>Nummer de kolomen op de schema bladzijde vanaf 0 (inien niet vanaf 1)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>Uitgeschakeld</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translatorcomment>minuut</translatorcomment>
<translation> min</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>Laat nieuw ingevoerde waarden van een elementen oplichten in het paneel</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>Elk element bevat informatie over de auteurs, licentie of andere informatie die u nuttig acht in een vrij veld.
Hier kunt u de standaardwaarde voor dit veld opgeven voor de items die u gaat maken:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>Wordt geactiveerd bij de volgende opstart van QElectroTech</translation>
</message>
@@ -3123,62 +3123,62 @@ Hier kunt u de standaardwaarde voor dit veld opgeven voor de items die u gaat ma
<translation>Vorm</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>Automatische back-up van projecten (toegepast bij de volgende opstart van QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation>Collectie</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation>Toegang tot de collecties</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation>Map voor de gemeenschappelijke collectie</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation>Map voor de gebruikers collectie</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation>Map voor de gebruikers etiketten</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Beheer de elementen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation>Hier kant u de standaardweergave van de verschillende teksten van QElectroTech definiëren</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation>Raster + toetsenbord</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>Raster : 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>Schema X raster</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>Schema Y raster</translation>
</message>
@@ -3193,96 +3193,101 @@ Hier kunt u de standaardwaarde voor dit veld opgeven voor de items die u gaat ma
<translation>Gebruik tabbladen (toegepast bij de volgende lancering van QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation>Teksten</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation>Tekst elementen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation>Lettertype :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>°</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Breedte :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Hoek :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Losse tekst</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Andere teksten</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>Het raster moet actief zijn om wijziginge te kunne uitvoeren.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Toetsenbordbeweging: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>Schema (sleutel: links / rechts) x raster</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Schema (sleutel: omhoog / omlaag) y raster</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>Totsenbord beweging met ALT : 1-9</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>Schema (sleutel: links / rechts) x raster</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Schema (sleutel: omhoog / omlaag) y raster</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>Bewaar niet de labels van de element bij copy-paste</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>Exporteer de klemmen naar de nomenclatuur</translation>
</message>
@@ -3292,133 +3297,158 @@ Hier kunt u de standaardwaarde voor dit veld opgeven voor de items die u gaat ma
<translation>Uitzomen voorbij het schema kader toestaan</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>Algemeen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>Systeem</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Arabisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Brasiliaans</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Catalaans</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Tsjechisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Duits</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Deens</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Grieks</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Engels</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Spaans</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Frans</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Croatisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Italiaans</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation>Japans</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Pools</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Portugees</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Roemeens</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Russisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Sloveens</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Nederlands</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation>Noors</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Belgisch nederlands</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Turks</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Hongaars</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
@@ -5289,133 +5319,133 @@ Wilt u wijzigingen bewaren?</translation>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation>LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation>QET titel blok sjablonen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation>Gebruiker titel blok sjabloon</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Afsluiten</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Verbergen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Herstellen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Verberg alle bewerkingen van het schema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Herstellen alle bewerkingen van het schema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Verberg alle bewerkingen van dit element</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Herstel alle bewerkingen van dit element</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Verberg alle bewerkingen van dit titel blok sjabloon</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Herstel alle bewerkingen van dit titel blok sjabloon</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Nieuwe uitgever van het schema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Nieuwe uitgever van het element</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Sluit QElectroTech programma</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Verklein QElectroTech naar systray</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Vergroot QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Bewerk de schema&apos;s</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Bewerk het element</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Bewerk het titel blok sjabloon</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt; Het volgende herstelbestand is gevonden, &lt;br&gt; Wilt u het openen? &lt;/ b&gt; &lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt; De volgende herstelbestanden zijn gevonden, &lt;br&gt; Wilt u ze openen? &lt;/ b&gt; &lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>Herstelde schema&apos;s</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Gebruik: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5432,7 +5462,7 @@ Beschikbare opties:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5441,108 +5471,108 @@ Beschikbare opties:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --gemeenschappelijke-map voor elementen-=MAP definieer de elementen collectie map
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --gemeenschappelijke-tbt-map=MAP Definieer de titel blok sjablonen collectie map
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-map=MAP Definieer configuratie map
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --ltaal map=MAP Definieer de taalbestanden map
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Laden... initialiseer elementen collectie cache</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Opladen... schema beheer</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Laden... Openen van bestanden</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Schema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Electrisch</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>QElectroTech instellen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translatorcomment>splash screen onderschrift</translatorcomment>
<translation>Laden ...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Laden... Systray icon</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
@@ -8873,7 +8903,7 @@ Wilt u deze vervangen?</translation>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation>dit is een fout in de code</translation>
+150 -120
View File
@@ -3015,41 +3015,41 @@ Les entrades de text i nombres
<translation>Emprar els colors del sistema</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Projectes</translation>
</message>
@@ -3059,45 +3059,45 @@ Les entrades de text i nombres
<translation>Utilitzar els gestos del touchpad</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation type="unfinished">Ressaltar al panell els elements importats recentment</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>Exportar els terminals en la nomenclatura</translation>
</message>
@@ -3107,62 +3107,62 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished">Formulari</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation type="unfinished">Col·leccions</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Gestió dels símbols</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation type="unfinished"></translation>
</message>
@@ -3177,91 +3177,96 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation type="unfinished">Tipus de lletra:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>No conservar les etiquetes dels elements després de copiar i enganxar</translation>
</message>
@@ -3271,133 +3276,158 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation>Permetre l&apos;ajust de la mida del full</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>General</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>Sistema</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Àrab</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Brasiler</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Català</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Txec</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Alemany</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Danès</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Grec</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Anglès</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Castellà</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Francès</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Croat</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Italià</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Polonès</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Portuguès</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Romanès</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Rus</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Eslovè</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Països Baixos</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Bèlgica-Flamenc</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
@@ -5256,211 +5286,211 @@ Vol desar els canvis?</translation>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Carregant... Posada en marxa del catxé de la col·lecció de símbols</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Carregant... Editor d&apos;esquemes</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Carregant... Obrint els fitxers</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished">LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished">Caixetins QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished">Caixetins personals</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Esquema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Elèctric</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>Configurar QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Carregant...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Carregant... icona de la safata del sistema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Sortir</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Amagar</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Restaurar</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>Amagar tots els editors d&apos;&amp;esquemes</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>Restaurar tots els editors d&apos;&amp;esquemes</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Amagar tots els editors de símbols</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Restaurar tots els editors de símbols</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>Amagar tots els editors de &amp;caixetins</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>Restaurar tots els editors de &amp;caixetins</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Nou editor d&apos;esquemes</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Nou editor de símbols</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Tancar el programa QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Minimitzar QEletectroTech a la safata del sistema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Restaurar QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Editor d&apos;esquemes</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Editors de símbols</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Editors de caixetins</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Ús:</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5469,7 +5499,7 @@ Vol desar els canvis?</translation>
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5486,26 +5516,26 @@ Opcions:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Definir la carpeta de la col·lecció de símbols</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Definir la carpeta de la col·lecció de caixetins</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Definir la carpeta de configuració
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Definir la carpeta amb els fitxers de llengua</translation>
@@ -8797,7 +8827,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
+150 -120
View File
@@ -3033,41 +3033,41 @@ textu a čísel.</translation>
<translation>Používat systémové barvy</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation>Cesta k vlastní sbírce</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation>Cesta k vlastním záhlavím výkresů</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation>Cesta ke společné sbírce</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation>Výchozí nastavení</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>Procházet...</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>Aby se změny použily je třeba sbírky prvků nahrát znovu</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Projekty</translation>
</message>
@@ -3077,46 +3077,46 @@ textu a čísel.</translation>
<translation>Používat posunky pro dotykovou plochu</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>Použít čísla listů místo jejich polohy v projektu</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation>Číslovat sloupce záhlaví výkresu od 0 (jinak 1)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>Zakázáno</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation> min</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>Zvýraznit v panelu čerstvě začleněné prvky</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>Prvky mohou zahrnout údaje o jejich autorech, licenci, nebo veškeré další užitečné informace, které shledáte prospěšnými.
Stanovte výchozí hodnotu textového pole pro nové prvky níže:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>Použito při příštím spuštění QElectroTechu</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>Vyvést svorky do seznamu součástí</translation>
</message>
@@ -3126,62 +3126,62 @@ Stanovte výchozí hodnotu textového pole pro nové prvky níže:</translation>
<translation>Formulář</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>Automatické zálohování projektů (použito při příštím spuštění programu QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation>Sbírky</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation>Přístup ke sbírkám</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation>Adresář se společnou sbírkou</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation>Adresář s vlastní sbírkou</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation>Adresář s vlastními záhlavími výkresů</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Správa prvků</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation>Zde můžete stanovit výchozí vzhled různých textů v QElectroTechu</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation>Mřížka a klávesnice</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>Mřížka: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>Souřadnice x mřížky editoru výkresu</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>Souřadnice y mřížky editoru výkresu</translation>
</message>
@@ -3196,91 +3196,96 @@ Stanovte výchozí hodnotu textového pole pro nové prvky níže:</translation>
<translation>Použít &amp;karty (použije se při příštím spuštění QElectroTechu)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation>Jazyky</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation>Texty</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation>Texty prvků</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation>Písmo:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>°</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Délka:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Otočení:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Nezávislé texty</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Jiné texty</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>Aby byly změny vidět, mřížka musí být zapnuta.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Posunutí předmětu v mřížce pomocí klávesnice: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>Posun v mřížce editoru výkresu, souřadnice x: klávesa šipky vlevo/vpravo</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Posun v mřížce editoru výkresu, souřadnice y: klávesa šipky nahoru/dolů</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>Posunutí předmětu v mřížce pomocí klávesnice při stisknutí klávesy Alt: 1 - 9</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>Posun v mřížce editoru výkresu, souřadnice x: klávesa šipky vlevo/vpravo</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Posun v mřížce editoru výkresu, souřadnice y: klávesa šipky nahoru/dolů</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>Neukládat štítky položek při kopírovat-vložit</translation>
</message>
@@ -3290,133 +3295,158 @@ Stanovte výchozí hodnotu textového pole pro nové prvky níže:</translation>
<translation>Povolit zrušení zvětšení mimo list</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>Obecné</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>Systém</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Arabština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Brazilština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Katalánština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Čeština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Němčina</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Dánština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Řečtina</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Angličtina</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Španělština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Francouzština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Chorvatština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Italština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation>Japonština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Polština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Portugalština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Rumunština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Ruština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Slovinština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Nizozemština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation>Norština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Belgičtina vlámština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Turečtina</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Maďarština</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation>Mongolština</translation>
</message>
@@ -5285,133 +5315,133 @@ Chcete uložit změny?</translation>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation>Zleva doprava</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation>Záhlaví výkresů QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation>Vlastní záhlaví výkresů</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Ukončit</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Skrýt</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Ukázat</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Skrýt všechny editory výkresů</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Ukázat všechny editory výkresů</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Skrýt všechny editory prvků</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Ukázat všechny editory prvků</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Skrýt všechny editory záhlaví výkresu</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Ukázat všechny editory záhlaví výkresu</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Nový editor výkresu</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Nový editor prvku</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Uzavřít QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Zmenší QElectroTech do systémové oblasti panelu</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Ukázat QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Editory výkresů</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Editory prvků</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Editory záhlaví výkresu</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Byl nalezen následující obnovovací soubor,&lt;br&gt;Chcete jej otevřít?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Byly nalezeny následující obnovovací soubory,&lt;br&gt;Chcete je otevřít?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>Obnovovací soubor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Použití: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5428,7 +5458,7 @@ Dostupné volby:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5437,107 +5467,107 @@ Dostupné volby:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Stanovit adresář pro sbírku s prvky
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Stanovit adresář pro sbírku se vzory záhlaví výkresů
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Stanovit adresář s nastavením
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Stanovit adresář s jazykovými soubory
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Nahrává se... Spouští se vyrovnávací paměť sbírky s prvky</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Nahrává se... Editor listů</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Nahrává se... Otevření souborů</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Výkres</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Elektrický</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>Nastavení QElectroTechu</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Nahrává se...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Nahrává se... Ikona v systémové oblasti panelu</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
@@ -8873,7 +8903,7 @@ Chcete je nahradit?</translation>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation>Toto je chyba v kódu</translation>
+150 -120
View File
@@ -3033,41 +3033,41 @@ Tekst og nummer inddata er også tilgængelig.</translation>
<translation>Brug systemfarver</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation>Sti til brugertilpasset samling</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation>Sti til brugertilpasset titelblok</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation>Sti til fælles samling</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation>Standard</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>Gennemse...</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>(Genindlæs symbol samling for at anvende ændringer)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Projekter</translation>
</message>
@@ -3077,46 +3077,46 @@ Tekst og nummer inddata er også tilgængelig.</translation>
<translation>Brug bevægelse berøringsplade</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>Brug ark numre i stedet for deres position i projekt</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation>Nummerere titelblokke kolonner fra 0 ellers 1</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>Deaktiveret</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation> min.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>Vis seneste integrerede symboler i panelet</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>Hvert symbol indeholder oplysninger om forfattere, licens og andre oplysninger, som anses for nyttige i et frit felt.
Her kan standardværdien angives for dette felt for de oprettede symboler:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>Kræver QElectroTech genstart</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>Eksportere klemmerækker i BOM</translation>
</message>
@@ -3126,62 +3126,62 @@ Her kan standardværdien angives for dette felt for de oprettede symboler:</tran
<translation>Formular</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>Automatisk projekt sikkerhedskopi (kræver QElectroTech genstart)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation>Samlinger</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation>Adgang til samlinger</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation>Katalog over fælles samling</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation>Katalog over brugertilpasset samling</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation>Katalog over brugertilpasset titelblokke</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Symbol håndtering</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation>Her kan standard udseende for de forskellige tekster i QElectroTech bestemmes</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation>Gitter + tastatur</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>Gitter: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>Diagram redigering x gitter</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>Diagram redigering y gitter</translation>
</message>
@@ -3196,91 +3196,96 @@ Her kan standardværdien angives for dette felt for de oprettede symboler:</tran
<translation>Brug faneblade (kr&amp;æver QElectroTech genstart)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation>Sprog</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation>Tekster</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation>Symbol tekste</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation>Skrifttype:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>°</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Længde:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Rotere:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Uafhængige tekste</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Andre tekste</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>Gitter skal være aktivt for at se ændringer.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Tastaturbevægelse: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>Diagram redigering (taste: venstre/højre) x-gitter</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Diagram redigering (taste: op/ned) y-gitter</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>Tastaturbevægelse med ALT-tasten: 1 - 9</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>Diagram redigering (taste: venstre/højre) x-gitter</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Diagram redigering (taste: op/ned) x-gitter</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>Opbevar ikke symbol etiketter i kopi og indsæt</translation>
</message>
@@ -3290,133 +3295,158 @@ Her kan standardværdien angives for dette felt for de oprettede symboler:</tran
<translation>Tillad visning ud over ark</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>Generelt</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>System</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Arabisk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Brasiliansk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Catalansk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Tjekkisk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Tysk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Dansk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Græsk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Engelsk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Spansk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Fransk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Kroatisk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Italiens</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation>Japansk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Polsk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Portugisisk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Rumænsk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Russisk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Slovensk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Hollansk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation>Norsk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Belgisk-Flamsk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Tyrkisk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Ungarsk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation>Mongolsk</translation>
</message>
@@ -5284,134 +5314,134 @@ Sletningen kan ikke fortrydes.</translation>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation>LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation>QET titelblokke</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation>Brugertilpasset titelblokke</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Afslut</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Skjul</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Vis</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Skjul diagram redigering</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Vis diagram redigering</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Skjul symbol redigering</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Vis symbol redigering</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Skjul titelblok redigering</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Vis titelblok redigering</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Nyt diagram redigering</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Nyt symbol redigering</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Luk QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Minimer QElectroTech i statusfelt</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Vis QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Diagram redigering</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Symbol redigering</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Titelblok redigering</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Følgende gendannelsesfil er fundet,&lt;br&gt;skal den åbnes?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translatorcomment>&lt;b&gt;Følgende gendannede filer fundet,&lt;br&gt;skal de åbnes?&lt;/b&gt;&lt;br&gt;</translatorcomment>
<translation>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>Gendanne fil</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Brug: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5428,7 +5458,7 @@ Kommandovalg:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5437,106 +5467,106 @@ Kommandovalg:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Angiv mappe for symbol samling
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Angiv mappe for titelblokke skabelon samling
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Angiv mappe for opsætning
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Indlæser... Initialiser mellemlager for symbol samlinger</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Indlæser... Diagram redigering</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Indlæser... Åbning af filer</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Diagram</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Elektrisk</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>Opsæt QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Indlæser...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Indlæser... Ikon til statusfelt</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Mappe med sprogfiler
@@ -8862,7 +8892,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation>der er en fejl i koden</translation>
+150 -120
View File
@@ -3036,41 +3036,41 @@ Texte und Zahlen sind ebenso erlaubt.</translation>
<translation>Farben vom Betriebssystem verwenden</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation>Pfad zur Benutzersammlung</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation>Pfad zu den Benutzer-Zeichnungsköpfen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation>Pfad zur QET Sammlung</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation>Standard</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>Auswählen...</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>(Bauteilsammlungen neu laden, um die Änderungen zu aktualisieren)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Projekte</translation>
</message>
@@ -3080,46 +3080,46 @@ Texte und Zahlen sind ebenso erlaubt.</translation>
<translation>Gesten vom Touchpad aktivieren</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>Foliennummern anstelle von Seitennummern für Projektanzeigen verwenden</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation>Spalten vom Zeichnungskopf ab 0 nummerieren (sonst ab 1)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>Deaktiviert</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation> min</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>Neu zum Projekt hinzugefügte Bauteile in der Sammlung hervorheben</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>Jedes Bauteil enthält Informationen über den Autor, die Lizenz und weiteren nützlichen Hinweise in einem frei definierbaren Textfeld.
Hier unten kann der Standardwert dieses Textfeldes für Ihre eigenen Bauteile definiert werden:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>Wirksam nach einem Neustart von QElectroTech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>Anschlüsse in Betriebsmittelverzeichnis exportieren</translation>
</message>
@@ -3129,62 +3129,62 @@ Hier unten kann der Standardwert dieses Textfeldes für Ihre eigenen Bauteile de
<translation>Form</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>Automatisches Abspeichern der Projekte (wirksam nach einem Neustart von QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation>Sammlungen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation>Zugriff auf Sammlungen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation>Pfad zur gemeinsamen Bauteilsammlung</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation>Pfad zur Benutzer-Bauteilsammlung</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation>Pfad zu den Benutzer-Zeichnungsköpfen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Bauteilverwaltung</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation>Einstellungen für die Standarddarstellung der verschiedenen Texte</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation>Raster &amp; Tastatur</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>Raster: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>Schaltplaneditor, Schrittweite x</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>Schaltplaneditor, Schrittweite y</translation>
</message>
@@ -3199,91 +3199,96 @@ Hier unten kann der Standardwert dieses Textfeldes für Ihre eigenen Bauteile de
<translation>Projekte in Reitern anzeigen (wirksa&amp;m nach einem Neustart von QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation>Sprachen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation>Texte</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation>Bauteiltexte</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation>Schriftart:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>°</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Länge:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Drehung:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Unabhängige Textfelder</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Sonstige Texte</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>Änderungen sind nur sichtbar, wenn das Raster aktiviert ist.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Bewegung mittels Tastatur: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>Schaltplaneditor (rechts/links Tasten), Schrittweite x</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Schaltplaneditor (hoch/runter Tasten), Schrittweite y</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>Bewegung mittels Tastatur und ALT Taste: 1 - 9</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>Schaltplaneditor (rechts/links Tasten), Schrittweite x</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Schaltplaneditor (hoch/runter Tasten), Schrittweite y</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>Betriebsmittelkennzeichen von Bauteilen beim Kopieren/Einfügen nicht beibehalten</translation>
</message>
@@ -3293,133 +3298,158 @@ Hier unten kann der Standardwert dieses Textfeldes für Ihre eigenen Bauteile de
<translation>Ansicht verkleinern über die Folie hinaus erlauben</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>Allgemein</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>System</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Arabisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Brasilianisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Katalanisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Tschechisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Deutsch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Dänisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Grieschisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Englisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Spanisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Französisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Kroatisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Italienisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation>Japanisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Polnisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Portugesisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Rumänisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Russisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Slowenisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Niederländisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation>Norwegisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Belgien-Flandern</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Türkisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Ungarisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation>Mongolisch</translation>
</message>
@@ -5283,211 +5313,211 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Laden... Initialisiere die Bauteilsammlungen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Laden... Schaltplaneditor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Laden... Öffne Dateien</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation>LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation>QET-Zeichnungsköpfe</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation>Benutzer-Zeichnungsköpfe</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Folie</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Elektrik</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>QElectroTech Einstellungen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Lade...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Lade... Symbole des Systemsbenachrichtigungsfelds</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Beenden</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Verstecken</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Zeigen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Verstecke alle Schaltplaneditoren</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Zeige alle Schaltplaneditoren</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Verstecke alle Bauteileditoren</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Zeige alle Bauteileditoren</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Verstecke alle Zeichnungskopf-Editoren</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Zeige alle Zeichnungskopf-Editoren</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Neuer Schaltplaneditor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Neuer Bauteileditor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Anwendung QElectroTech schließen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>QElectroTech in Systembenachrichtigungsfeld minimieren</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>QElectroTech wiederherstellen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Schaltplaneditor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Bauteileditor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Zeichnungskopf-Editor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Die folgende Sicherungsdatei wurde gefunden,&lt;br&gt;Möchten Sie sie öffnen?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Die folgenden Sicherungsdateien wurden gefunden,&lt;br&gt;Möchten Sie sie öffnen?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>Sicherungsdatei</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Verwendung: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5496,7 +5526,7 @@ Voulez-vous enregistrer les modifications ?</source>
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5513,28 +5543,28 @@ Verfügbare Optionen:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Setzt Pfad zur Bauteilsammlung
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Pfad zur Zeichnungskopf-Sammlung setzen
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Setzt Pfad zur Konfiguration
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Setzt Pfad zu den Sprachdateien
@@ -8859,7 +8889,7 @@ Möchten Sie sie ersetzen?</translation>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation>Dies ist ein Programmfehler.</translation>
+150 -120
View File
@@ -3033,41 +3033,41 @@ that you create. Text and number inputs are
<translation>Χρήση των χρωμάτων του συστήματος</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation>Διαδρομή της συλλογής χρήστη</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation>Διαδρομή των πινακίδων χρήστη</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation>Διαδρομή της κοινής συλλογής</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation>Προεπιλογή</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>Πλοήγηση</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>(Επαναφόρτωση των συλλογών στοιχείων για να ισχύσουν οι αλλαγές)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Έργα</translation>
</message>
@@ -3077,41 +3077,41 @@ that you create. Text and number inputs are
<translation>Χρήση χειρονομιών αφής</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>Χρήση του αριθμού σελίδας αντί της θέσης στο έργο</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation>Αρίθμηση των στηλών από 0 (1 διαφορετικά)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>Απενεργοποιημένο</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation> λεπτά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>Επισήμανση των προσφάτως ενσωματωμένων στοιχείων στον πίνακα</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>Κάθε στοιχείο περιέχει πληροφορίες σχετικά με τους δημιουργούς του, την άδειά του ή οποιεσδήποτε άλλες πληροφορίες που θεωρείτε χρήσιμες σε ένα ελεύθερο πεδίο.
Μπορείτε να καθορίσετε εδώ την προεπιλεγμένη τιμή αυτού του πεδίου για τα στοιχεία που θα δημιουργήσετε:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>Εφαρμογή στην επόμενη εκκίνηση του QElectroTech)</translation>
</message>
@@ -3121,62 +3121,62 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation>Φόρμα</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>Αυτόματη δημιουργία αντιγράφων ασφαλείας των έργων (εφαρμοζόμενη στην επόμενη εκκίνηση του QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation>Συλλογές</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation>Πρόσβαση σε συλλογές</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation>Κατάλογος της κοινής συλλογής</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation>Κατάλογος της συλλογής χρήστη</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation>Κατάλογος των πινακίδων χρήστη</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Διαχείριση των στοιχείων</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation>Εδώ μπορείτε να ορίσετε την προεπιλεγμένη εμφάνιση των διαφόρων κειμένων του QElectroTech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation>Δικτύωμα + Πληκτρολόγιο</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>Δικτύωμα: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>Επεξεργαστής διαγραμμάτων xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>Επεξεργαστής διαγραμμάτων yGrid</translation>
</message>
@@ -3191,96 +3191,101 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation>Χρήση Καρτελών (Εφαρμογή στην επόμενη εκκίνηση του QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation>Κείμενα</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation>Κείμενα στοιχείων</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation>Γραμματοσειρά:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>°</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Μήκος:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Περιστροφή:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Ανεξάρτητα κείμενα</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Άλλα Κείμενα</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>Το δικτύωμα πρέπει να είναι ενεργό για να δείτε τις αλλαγές.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Μετακίνηση πληκτρολογίου: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>Επεξεργαστής διαγραμμάτων (πλήκτρο: αριστερά / δεξιά) xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Επεξεργαστής διαγραμμάτων (πλήκτρο: επάνω / κάτω) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>Μετακίνηση πληκτρολογίου με το πλήκτρο ALT: 1 - 9</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>Επεξεργαστής διαγραμμάτων (πλήκτρο: αριστερά / δεξιά) xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Επεξεργαστής διαγραμμάτων (πλήκτρο: επάνω / κάτω) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>Μη αποθήκευση των ετικετών κατά την αντιγραφή επικόλληση</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>Εξαγωγή των ακροδεκτών στον κατάλογο εξαρτημάτων</translation>
</message>
@@ -3290,133 +3295,158 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation>Δυνατότητα αποεστίασης πέρα από τη σελίδα</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>Γενικές</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>Σύστημα</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Αραβικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Βραζιλιάνικα</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Καταλανικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Τσέχικα</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Γερμανικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Δανικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Ελληνικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Αγγλικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Ισπανικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Γαλλικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Κροατικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Ιταλικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation>Ιαπωνικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Πολωνικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Πορτογαλικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Ρουμανικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Ρώσικα</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Σλοβενικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Ολλανδικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation>Νορβηγικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Φλαμανδικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Τουρκικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Ουγγρικά</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
@@ -5282,133 +5312,133 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation>LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation>Πινακίδες QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation>Πινακίδες χρήστη</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Τερματισμός</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>Από&amp;κρυψη</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Εμφάνιση</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Απόκρυψη όλων των επεξεργαστών διαγραμμάτων</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>Εμ&amp;φάνιση όλων των επεξεργαστών διαγραμμάτων</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>Από&amp;κρυψη όλων των επεξεργαστών στοιχείων</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>Προ&amp;βολή όλων των επεξεργαστών στοιχείων</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>Α&amp;πόκρυψη όλων των επεξεργαστών πινακίδων</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>Ε&amp;μφάνιση όλων των επεξεργαστών πινακίδων</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Νέος επεξεργαστής διαγραμμάτων</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Νέος επεξεργαστής στοιχείου</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Κλείσιμο του QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Ελαχιστοποιεί το QElectroTech στο πλαίσιο συστήματος</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Επαναφορά του QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Επεξεργαστές διαγραμμάτων</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Επεξεργαστές στοιχείων</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Επεξεργαστές πινακίδων</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Βρέθηκε το παρακάτω αρχείο επαναφοράς,&lt;br&gt;Θέλεις να ανοιχτεί;&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Βρέθηκαν τα παρακάτω αρχεία επαναφοράς,&lt;br&gt;Θέλεις να ανοιχτούν;&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>Αρχεία επαναφοράς</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Χρήση: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5424,7 +5454,7 @@ Options disponibles :
--license προβολή της άδειας χρήσης</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5433,106 +5463,106 @@ Options disponibles :
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>Ρύθμιση του QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=ΚΑΤΑΛΟΓΟΣ Προσδιορίστε τον κατάλογο της συλλογής στοιχείων
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-elements-dir=ΚΑΤΑΛΟΓΟΣ Προσδιορίστε τον κατάλογο της συλλογής πινακίδων
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=ΚΑΤΑΛΟΓΟΣ Προσδιορίστε τον κατάλογο των ρυθμίσεων
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=ΚΑΤΑΛΟΓΟΣ Προσδιορίστε τον κατάλογο των αρχείων γλώσσας</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Φόρτωση... Αρχικοποίηση της προσωρινής μνήμης συλλογής στοιχείων</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Φόρτωση ... Επεξεργαστής διαγραμμάτων</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Φόρτωση... Ανοίγουν τα αρχεία</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Διάγρα</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Ηλεκτρικ</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Φόρτωση...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Φόρτωση ... Εικονίδιο πλαισίου συστήματος</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
@@ -8852,7 +8882,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
BIN
View File
Binary file not shown.
+151 -121
View File
@@ -1838,7 +1838,7 @@ Note: these options DO NOT allow or block auto numberings, only their update pol
<message>
<location filename="../sources/editor/ui/elementpropertieseditorwidget.ui" line="113"/>
<source>Élément bornier</source>
<translation>Terminal block element </translation>
<translation>Terminal block element</translation>
</message>
<message>
<location filename="../sources/editor/ui/elementpropertieseditorwidget.ui" line="126"/>
@@ -3024,41 +3024,41 @@ that you create. Text and number inputs are
<translation>Use system colors</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation>User Collection Path</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation>User Title blocks Path</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation>Path of the Common Collection</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation>By default</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>Browse...</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>(Reload the elements collections to apply the changes)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Projects</translation>
</message>
@@ -3068,45 +3068,45 @@ that you create. Text and number inputs are
<translation>Use gestures touchpad</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>Use folio numbers instead of their position in the project</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation>Number the title block columns from 0 (1 otherwise)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>Disabled</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation> min</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>Highlight freshly integrated elements in the panel</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>Element may include information about its authors, license, or other useful information. Specify the default value of this textfield for new elements below:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>Applied to the next launch of QElectroTech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>Export terminals in the parts list</translation>
</message>
@@ -3116,62 +3116,62 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation>Form</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>Automatic backup of projects (applied at the next launch of QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation>Collections</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation>Access the collections</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation>Common collection directory</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation>User collection directory</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation>User title blocks directory</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Elements management</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation>Here you can define the default appearance of the different texts of QElectroTech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation>Grid + Keyboard</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>Grid: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>DiagramEditor xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>DiagramEditor yGrid</translation>
</message>
@@ -3186,91 +3186,96 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation>Use &amp;tabs (applied at the next launch of QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation>High pixel density (hdpi) displays scaling method (applied to the next launch of QElectroTech) :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation>Languages</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation>texts</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation>Elements texts</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation>Font:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>°</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Length :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Rotation :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Independent texts</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Other texts</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>The Grid must be active to see the changes.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Keyboard movement: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>DiagramEditor (key: left / right) xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>DiagramEditor (key: up / down) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>Keyboard movement with the ALT key: 1 - 9</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>DiagramEditor (key: left / right) xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>DiagramEditor (key: up / down) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>Do not store the labels of items in the copy paste</translation>
</message>
@@ -3280,133 +3285,158 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation>Allow unzoom beyond the folio</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation>Rounding up for 0.5 and more</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation>Always top rounding</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation>Always rounded down</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation>Rounding up for 0.75 and more</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation>No rounding</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>General</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>System</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Arabic</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Brazilian</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Catalan</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Czech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>German</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Danish</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Greek</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>English</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Spanish</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>French</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Croatian</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Italian</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation>Japanese</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Polish</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Portuguese</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Romanian</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Russian</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Slovenian</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Dutch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation>Norwegian</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Belgium-Flemish</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Turkish</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Hungarian</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation>Mongolian</translation>
</message>
@@ -5273,133 +5303,133 @@ Do you want to save changes?</translation>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation>LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation>QET title blocks</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation>User title blocks</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Quit</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Hide</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Show</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Hide diagram editor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Show diagram editors</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Hide element editor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Show element editor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Hide title block template editor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Show title block template editors</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;New diagram editor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;New element editor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Closes QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Reduces QElectroTech into the systray</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Restore QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Diagram editors</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Element editors</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Title block template editors</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;The following restore file has been found,&lt;br&gt;Do you want to open it ?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;The following restore files have been found,&lt;br&gt;Do you want to open them ?&lt;/b&gt; &lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>Restore file</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Usage: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5416,7 +5446,7 @@ Available options:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5425,107 +5455,107 @@ Available options:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Define the elements collection directory
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Define the title block templates collection directory
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Define configuration directory
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Define the language files directory
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Loading... Initializing the elements collection cache</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Loading... Folios editor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Loading... Opening files</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Diagram</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Electric</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>Configure QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Loading...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Loading... Systray icon</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
@@ -8823,7 +8853,7 @@ Do you want to replace it ?</translation>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation></translation>
+150 -120
View File
@@ -3043,41 +3043,41 @@ Las entradas de texto y números
<translation>Utiliza los colores del sistema</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation>Ruta de la colección de usuario</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation>Ruta de los rótulos de usuario</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation>Ruta de la colección común</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation>Por defecto</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>Navegar...</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>(Actualizar las colecciones de elementos para aplicar cambios)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Proyectos</translation>
</message>
@@ -3087,41 +3087,41 @@ Las entradas de texto y números
<translation>Utiliza los gestos del touchpad</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>Utilizar números de folio en lugar de su posición en el proyecto</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation>Numere las columnas del proyecto a partir de 0 (1 de lo contrario)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>Desactivado</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation> minuto</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>Resalta los elementos recién integrados en el panel</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>Cada elemento incorpora información sobre sus autores, su licencia, o cualquier otra información que considere útil en un campo libre.
Aquí puede especificar el valor predeterminado de este campo para los elementos que creará:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>Aplica en el proximo lanzamiento de Qelectrotech</translation>
</message>
@@ -3131,62 +3131,62 @@ Aquí puede especificar el valor predeterminado de este campo para los elementos
<translation>Formulario</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>Copia de seguridad automática de los proyectos (aplica en el próximo lanzamiento de QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation>Colecciones</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation>Acceso a las colecciones</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation>Directorio de la colección común</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation>Directorio de colección de usuario</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation>Directorio del proyecto de usuario</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Gestión de elementos</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation>Aquí puede definir la apariencia predeterminada de los diferentes textos de QElectroTech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation>Rejilla + Teclado</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>Rejilla: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>DiagramaEditor xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>DiagramaEditor yGrid</translation>
</message>
@@ -3201,96 +3201,101 @@ Aquí puede especificar el valor predeterminado de este campo para los elementos
<translation>Usar pestañas (aplica en el próximo lanza&amp;miento de QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation>Textos</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation>Textos de elementos</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation>Tipo de letra:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>°</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Longitud:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Rotación:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Textos independientes</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Otros textos</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>La rejilla debe estar activa para ver los cambios.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Movimiento del teclado: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>DiagramaEditor (tecla: izquierda / derecha) xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>DiagramaEditor (tecla: arriba / abajo) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>Movimiento del teclado con la tecla ALT: 1 - 9</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>DiagramaEditor (tecla: izquierda / derecha) xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>DiagramaEditor (tecla: arriba / abajo) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>No conservar las etiquetas de los elementos después de copiar y pegar</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>Exportar los terminales en la nomenclatura</translation>
</message>
@@ -3300,134 +3305,159 @@ Aquí puede especificar el valor predeterminado de este campo para los elementos
<translation>Permite el ajuste del tamaño del folio</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>General</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>Sistema</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Árabe</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Brasileño</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Catalán</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Checo</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Alemán</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Danés</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Griego</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Inglés</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Español</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Francés</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Croata</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Italiano</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Polaco</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Portugués</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translatorcomment>Rumanos</translatorcomment>
<translation>Rumano</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Ruso</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Esloveno</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Países Bajos</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Bélgica-Flamenco</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Turco</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Húngaro</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
@@ -5294,133 +5324,133 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished">LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished">Rótulos QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished">Rótulos de usuario</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Salir</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Esconder</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Restaurar</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Esconder todos los editores de esquema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Restaura todos los editores de esquema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Esconder todos los editores de elementos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Restaura todos los editores de elementos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Esconder los editores de rótulos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Restaura los editores de rótulos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Nuevo editor de esquema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Nuevo editor de elemento</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Cierre el programa QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Minimiza QElectroTech a la bandeja del sistema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Restaura QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Editores de esquemas</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Editores de elementos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Editores de rótulos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Se ha encontrado el siguiente archivo de restauración,&lt;br&gt;¿deseas abrirlo?&lt;/br&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Se encontraron los siguientes archivos de restauración,&lt;br&gt;¿deseas abrirlos?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>Archivo de restauración</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Uso : </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5429,7 +5459,7 @@ Voulez-vous enregistrer les modifications ?</source>
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5446,107 +5476,107 @@ Opciones disponibles:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Definir la carpeta de la colección de elementos
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Definir la carpeta de la colección de elementos
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Definir la carpeta de configuración
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Definir la carpeta con los archivos de idioma
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Cargando... Inicializando la caché de collecciones de elementos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Cargando... Editor de esquemas</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Cargando.... Abriendo archivos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Esquema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Eléctrico</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>Configurar QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Cargando...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Cargando.... icono de la bandeja del sistema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
@@ -8875,7 +8905,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
BIN
View File
Binary file not shown.
+150 -120
View File
@@ -3009,23 +3009,23 @@ que vous créez. entrées de texte et nombres sont
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation></translation>
</message>
@@ -3035,12 +3035,12 @@ que vous créez. entrées de texte et nombres sont
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation></translation>
</message>
@@ -3055,118 +3055,118 @@ que vous créez. entrées de texte et nombres sont
<translation>Formulaire</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>Editeur de schémas xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>Editeur de schémas yGrid</translation>
</message>
@@ -3181,217 +3181,247 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>Editeur de schémas (touche : gauche / droite) xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Editeur de schémas (touche : haut / bas) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>Editeur de schémas (touche : haut / bas) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Editeur de schémas (touche : haut / bas) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation>Norvégien</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation></translation>
</message>
@@ -5248,218 +5278,218 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5470,25 +5500,25 @@ Options disponibles :
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation></translation>
@@ -8802,7 +8832,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation>c&apos;est une erreur dans le code</translation>
+150 -120
View File
@@ -2998,41 +2998,41 @@ that you create. Text and number inputs are
<translation>Koristi sistemske boje</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Projekt</translation>
</message>
@@ -3042,45 +3042,45 @@ that you create. Text and number inputs are
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation type="unfinished">Označite elemente u integriranoj ploči</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation type="unfinished"></translation>
</message>
@@ -3090,62 +3090,62 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Upravljanje elementima</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation type="unfinished"></translation>
</message>
@@ -3160,91 +3160,96 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation type="unfinished">Font:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation type="unfinished"></translation>
</message>
@@ -3254,133 +3259,158 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>Općenito</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
@@ -5235,211 +5265,211 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Učitavam... Inicijaliziram međumemoriju kolekcije elemenata</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Učitavam... Otvaram datoteke</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished">LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished">QET naslov grupe</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished">Korisnikov naslov grupe</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Shema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Električna</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation type="unfinished">Podesite.QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Učitavam...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Učitavam... Ikona trake sustava</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Gotovo</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Sakrij</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Pokaži</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Sakrij uređivač shema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Prikaži uređivač shema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Sakrij uređivač elemenata</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Prikaži uređivač elemenata</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Sakrij uređivač naslova grupe predloška</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Prikaži uređivač naslova grupe predložaka</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Novi uređivač shema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Novi uređivač elemenata</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Zatvori QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Minimiziraj QElectroTech u traku sustava</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Vrati QElectrotech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Uređivač shema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Uređivač elemenata</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Uređivač naslova grupe predložaka</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Upotrijebljeno:</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5448,7 +5478,7 @@ Voulez-vous enregistrer les modifications ?</source>
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5464,25 +5494,25 @@ Dostupne opcije:
--licenca Prikaži licencu</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dirr=DIR Definiraj zajednički direktorij za elemente</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Definiraj direktorij naslova grupe predložaka</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Definiraj direktorij konfiguracije</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Definiraj direktorij za jezične datoteke</translation>
@@ -8786,7 +8816,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
BIN
View File
Binary file not shown.
+222 -192
View File
File diff suppressed because it is too large Load Diff
+150 -120
View File
@@ -3016,8 +3016,8 @@ che si crea. Si possono anche inserire caratteri alfanumerici.</translation>
<context>
<name>GeneralConfigurationPage</name>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>°</translation>
</message>
@@ -3027,98 +3027,123 @@ che si crea. Si possono anche inserire caratteri alfanumerici.</translation>
<translation>Modulo</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Greco</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Turco</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation>Percorso della raccolta utente</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Arabo</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation type="unfinished">Generale</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Russo</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Testi indipendenti</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation>Elenco della collezione comune</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation>È possibile definire la visulizzazione predefinita dei differenti testi di QElectroTech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Italiano</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>Sistema</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Brasiliano</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>(Ricaricare la raccolta di elementi per applicare le modifiche)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation>Testi degli elementi</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>La Griglia deve essere attiva per vedere le modifiche.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Spostamento alla tastiera: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>Editor schemi (tasto: sinistra/destra) X</translation>
</message>
@@ -3128,50 +3153,55 @@ che si crea. Si possono anche inserire caratteri alfanumerici.</translation>
<translation>Permetti la riduzione dello zoom al di fuori della pagina</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation> min</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>Spostamento alla tastiera con il tasto ALT: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>Griglia: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Belga-Fiammingo</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Tedesco</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Sloveno</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Editor schemi (tasto: alto/basso) Y</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>Ogni elemento include informazioni sui suoi autori, licenze o qualsiasi altra informazione che si ritienga utile in un campo libero.
Qui è possibile specificare il valore predefinito di questo campo per gli oggetti che verranno creati:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>Salvataggio automatico dei progetti (applicato al prossimo avvio di QElectrotech)</translation>
</message>
@@ -3181,39 +3211,39 @@ Qui è possibile specificare il valore predefinito di questo campo per gli ogget
<translation>Usare i colori di sistema</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Danese</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Croato</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation>Norvégien</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation>Testi</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation>Carattere :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Polacco</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Ungherese</translation>
</message>
@@ -3223,14 +3253,14 @@ Qui è possibile specificare il valore predefinito di questo campo per gli ogget
<translation>Aspetto</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation>Predefinito</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Rumeno</translation>
</message>
@@ -3240,69 +3270,69 @@ Qui è possibile specificare il valore predefinito di questo campo per gli ogget
<translation>Utilizzare le fin&amp;estre (applicato al prossivo avvio de QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Progetti</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>Applicato al prossimo avvio di QElectroTech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>Disattivato</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>Esporta le morsettiere dalla nomenclatura</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Inglese</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation>Japanese</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>Editor schemi (tasto: sinistra/destra) X</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Rotazione :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Francese</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Paesi bassi</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation>Numerare le colonne del cartiglio a partire da 0 (altrimenti inizia da 1)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Catalano</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Portoghese</translation>
</message>
@@ -3312,44 +3342,44 @@ Qui è possibile specificare il valore predefinito di questo campo per gli ogget
<translation>Utilizzare le &quot;gestures&quot; del touchpad</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>Sfoglia...</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Ceco</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Spagnolo</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Gestione degli elementi</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation>Griglia + Tastiera</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation>Percorso della raccolta comune</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation>Collezioni</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation>Accesso alle collezioni</translation>
</message>
@@ -3359,57 +3389,57 @@ Qui è possibile specificare il valore predefinito di questo campo per gli ogget
<translation>Utilizzare le cartelle (applicato al prossivo avvio di QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Editor schemi (tasto: alto/basso) Y</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>Non saranno copiate le etichette degli elementi dopo un &quot;copia e incolla&quot;</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>Utilizzare il numero di pagina al posto della posizione nel progetto</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>Evidenzia nel pannello gli elementi appena integrati</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation>Percorso dei cartigli utente</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Lunghezza:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation>Elenco della collezione utente</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation>Elenco dei cartigli utente</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>Editor schemi X</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>Editor schemi Y</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Altri testi</translation>
</message>
@@ -5277,29 +5307,29 @@ Do you want to save changes?</translation>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Nuovo modificatore d&apos;elemento</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Sono stati trovati i seguenti file di ripristino,&lt;br&gt;Aprirli?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Definisce la directory di configurazione
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>Nascondi (&amp;M)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5316,215 +5346,215 @@ Opzioni disponibili:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Ripristina QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>File di ripristino</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>Nascondi i &amp;modificatori d&apos;elemento</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Chiudi QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Definisce la directory dei file della lingua</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Modificatori d&apos;elemento</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>Most&amp;ra i modificatori di schema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Modificatori di schema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation type="unfinished">Caricamento... Inizializzazione cache collezione elementi</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation type="unfinished">Caricamento... Editor di schemi</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation type="unfinished">Caricamento... Apertura files</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished">LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished">Cartiglio QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished">Cartigli utente</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation type="unfinished">Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation type="unfinished">QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation type="unfinished">Schema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation type="unfinished">Elettrico</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation type="unfinished">QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation type="unfinished">Configurazione QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation type="unfinished">Caricamento...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation type="unfinished">Caricamento... icona Systray</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>Esci (&amp;Q)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation type="unfinished">Nascondi i &amp;modificatori di cartiglio</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation type="unfinished">Most&amp;ra i modificatori di cartiglio</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation type="unfinished">Modificatori di cartiglio</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Definisce la directory della collezione degli elementi
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Uso: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>Visualizza (&amp;R)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Riduci QElectroTech nella systray</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Definisce la directory della collezione dei modelli di cartiglio</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>Most&amp;ra i modificatori d&apos;elemento</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;È stato trovato il seguente file di ripristino,&lt;br&gt;Aprirlo?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>Nascondi i &amp;modificatori di schema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Nuovo modificatore di schema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -8613,7 +8643,7 @@ La si vuole sostituire ?</translation>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation>Questo è un errore nel codice</translation>
+150 -120
View File
@@ -3056,365 +3056,395 @@ that you create. Text and number inputs are
<translation> (&amp;T) 使 (QElectroTech )</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation> (QElectroTech )</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation> 0 ( 1 )</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation> </translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>使</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>...</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>()</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>調</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>
:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>QElectroTech </translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation> QElectroTech </translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation> :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation> :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation> :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation> + </translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>グリッド : 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation> yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation> xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>キーボードによる移動量 : 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation> (キー : / ) xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation> (キー : / ) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>ALT : 1 - 9</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation> (キー : / ) xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation> (キー : / ) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation></translation>
</message>
@@ -5279,211 +5309,211 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>... </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>... </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>... </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation>QET </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>QElectroTech </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>... </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation> (&amp;Q)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation> (&amp;H)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation> (&amp;S)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation> (&amp;H)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation> (&amp;S)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation> (&amp;H)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation> (&amp;S)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation> (&amp;H)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation> (&amp;S)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation> (&amp;N)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation> (&amp;N)</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>QElectroTech </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>QElectroTech </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>QElectroTech </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;&lt;br&gt;?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;&lt;br&gt;?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>使: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5492,7 +5522,7 @@ Voulez-vous enregistrer les modifications ?</source>
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5509,28 +5539,28 @@ Options disponibles :
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR
@@ -8840,7 +8870,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
+150 -120
View File
@@ -3037,364 +3037,394 @@ that you create. Text and number inputs are
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>Хуулж тавихдаа нэгжийн нэршлийг хадгалахгүй байх</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>°</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Урт :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Эргэлт :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Бие даасан текстүүд</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Бусад текстүүд</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>Өөрчлөлтийг харахын тулд Grid идэвхтэй байх ёстой.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Товчлуурын хөдөлгөөн: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>Схем Засах (key: left / right) xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Схем Засах (key: up / down) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>Товчлуурын хөдөлгөөн Alt -р: 1 - 9</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>Схем Засах (key: left / right) xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Схем Засах (key: up / down) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>Систем</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Араб</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Бразил</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Каталан</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Чех</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Герман</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Дани</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Грек</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Англи</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Испани</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Франц</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Хорват</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Итали</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Польш</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Португал</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Румын</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Орос</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Словень</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Голланд</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation>Норвеги</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Бельги-Флем</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Турк</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Унгар</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation></translation>
</message>
@@ -5250,211 +5280,211 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Ачааллаж байна... Элементүүдийн цуглуулгын санах ойг эхлүүлж байна</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Ачааллаж байна... Хуудаснуудын засварлагч</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Ачааллаж байна... Файлуудыг нээж байна</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished">LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished">QET гарчигны блокууд</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished">Хэрэглэгчийн нэрний блокууд</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Схем</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Цахилгаан</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>QElectroTech-г тохируулах</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Ачааллаж байна...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Ачааллаж байна... Systray icon</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Гарах</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Нуух</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Харуулах</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Схем засалтыг нуух</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Схемийн тохиргоог харуулах</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Элемент засагчийг нуух</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Элементийн тохиргоог харуулах</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Нэрний загвар засагчийг нуух</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Хаягийн блокын тохиргоог харуулах</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Шинэ элементийг засагч</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>QElectroTech-г хаах</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>QElectroTech-г systray-руу багасгах</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>QElectroTech-г сэргээх</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Схем засварлагчид</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Элемент засварлагчид</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Гарчигийн загвар засварлагчид</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Сэргээх файл олдлоо,&lt;br&gt;Үүнийг нээмээр байна уу ?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Сэргээх файлууд олдлоо,&lt;br&gt;Эдгээрийг нээмээр байна уу ?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>Файл сэргээх</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Хэрэглээ: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5463,7 +5493,7 @@ Voulez-vous enregistrer les modifications ?</source>
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5474,28 +5504,28 @@ Options disponibles :
<translation></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --энгийн-элементүүд-dir=DIR Элементүүдийн цуглуулгын лавлахыг тодорхойлох
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --энгийн-tbt-dir=DIR Гарчигийн загваруудын цуглуулгын лавлахыг тодорхойлох
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Тохиргооны лавлахыг тодорхойлох
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Хэлний файлуудын лавлахыг тодорхойлох
@@ -8782,7 +8812,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
+150 -120
View File
@@ -3052,103 +3052,108 @@ that you create. Text and number inputs are
<translation>Vis so&amp;m fliker (aktiveres etter restart av QElectroTech) </translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Prosjekte</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>Ikke ta med komponentkodene ved &quot;klipp og lim&quot;</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>Automatisk lagring av prosjektene (aktiveres etter restart av QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>Bruk sidenummer istedenfor automatisk rekkefølge i prosjektet</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation>Første kolonne er kolonne 0 (ellers kolonne 1) </translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>Deaktivert</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation>min</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>Eksporter rekkeklemmer i deleliste</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation>Samlinger/biblioteker</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation>Tilgang til samlingene</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation>Filbane til felles samling</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation>Standard</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>Velg...</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation>Filbane til brukersamling/-bibliotek</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>(Last inn komponentsamlingene nytt for oppdatering av endringene)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation>Filbane til bruker-tegningsmaler</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Komponentorganisering</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>Uthev nye komponenter i panelet</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>Hver komponent inneholder informasjon om autor, lisens og ytterlige informasjoner i en egen tekstfelt.
@@ -3156,262 +3161,287 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>Aktiveres etter restart av QElectroTech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation>Tekster</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation>Standardverdier for de forskjellige tekstene</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation>Komponenttekstene</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation>Skrifttype</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>°</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Lengde</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Rotasjon</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Uavhengige tekstfelt</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Øvrige tekster</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation>Raster &amp; tastatur</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>Raster: 1 - 30 </translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>Skjemategningenes rasterhøyde</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>Endringene er bare synlig ved aktivert raster</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>Skjemategningenes rasterbredde</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Forskyvning 1 - 30 med tastatur</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>Skjemategning piltaste venstre/høyre forskyvning</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Skjemategning piltaste opp/ned forskyvning</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>Forskyvning med tastene [ALT] + [1]..[9]</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>Skjemategning piltaste venstre/høyre forskyvning</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Skjemategning piltaste opp/ned forskyvning</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>Felles</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>System</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Arabisk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Brasiliansk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Katalansk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Tsjekkisk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Tysk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Dansk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Gresk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Engelsk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Spansk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Fransk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Kroatisk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Italiensk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Polsk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Portugisik</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Rumensk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Russisk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Slovensk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Nederlandsk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation>Norsk (bokmål)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Flamsk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Tyrkisk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Ungarsk</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation>Filbane til QET sin felles samling</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation>Filbane til brukersamlingen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation>Filbane til tegningsmalene</translation>
</message>
@@ -5269,218 +5299,218 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Laster... Gjenoppbygger komponentsamlingen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Laster... Tegningseditor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Laster... Åpner filene</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished">LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished">QElektroTech-maler</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished">Brukermaler</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Skjema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Elektro</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>QElectroTech instillinger</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Laster...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Laster... Systemmeldinger</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>A&amp;vbryt</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Skjul</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>V&amp;is</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>Skjul alle skje&amp;maeditorer</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>Vis a&amp;lle skjemaeditorer</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>Skj&amp;ul alle komponenteditorer</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>Vi&amp;s alle komponenteditorer</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>Skjul alle t&amp;egningsmaleditorer</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>Vis alle te&amp;gningsmaleditorer</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Ny skjemaeditor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>Ny kom&amp;ponenteditor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Lukk &amp;QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Minimer QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Hent opp QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Skjemaeditor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Komponenteditor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Tegningsmal-editor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Fant denne sikkerhetskopien,&lt;br&gt;Skal den åpnes?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Fant disse sikkerhetskopiene,&lt;br&gt;Skal dem åpnes?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>Sikkerhetskopi</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Bruk: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
<translation> [Opsjoner] [Fil]...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5497,28 +5527,28 @@ Tilgjengelige opsjoner:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Angir filbane til komponentsamlingen
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Angir filbane til tegningsmal-samlingen
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Angir filbane til konfigurasjonen
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Angir filbane til språkfilene
@@ -8836,7 +8866,7 @@ Vil du erstatte den?</translation>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
BIN
View File
Binary file not shown.
+154 -124
View File
@@ -3029,36 +3029,36 @@ Teksten en nummers zijn ook beschikbaar.</translation>
<translation>Gebruik systeemkleuren</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation>Pad van de gebruikerscollectie</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation>Pad van de algemene collectie</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation>Standaard</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>Bladeren...</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>(Herlaadt collecties om de wijzigingen toe te passen)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Projecten</translation>
</message>
@@ -3068,101 +3068,101 @@ Teksten en nummers zijn ook beschikbaar.</translation>
<translation>Gebruik touchpad</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>Gebruik schemabladnummers in plaats van hun plaats in het project</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation>Nummer kolommen vanaf 0 (in plaats van vanaf 1)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>Uitschakelen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation> min</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation>Pad van gebruikerstitelblokken</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation>Collecties</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation>Toegang tot collecties</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation>Map van de algemene collectie</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation>Map van de gebruikerscollectie</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation>Map van de gebruikerstitelblokken</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Elementenbeheer</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>Markeer nieuw toegevoegde elementen in het paneel</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>Elk element bevat een vrij tekstveld met informatie over de auteur, de licentie of andere voor u relevante informatie.
Hieronder kunt u de standaardtekst voor nieuwe elementen hiervan opgeven:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>Toegepast na herstarten van QElectroTech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation>Hier kunt u de standaardweergave van verschillende QElectroTech-teksten instellen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation>Raster + Toetsenbord</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>Raster in schemabewerker</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>In x-richting: (1 - 30)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>In y-richting: (1 - 30)</translation>
</message>
@@ -3177,101 +3177,106 @@ Hieronder kunt u de standaardtekst voor nieuwe elementen hiervan opgeven:</trans
<translation>Tabs gebruiken (toegepast na he&amp;rstarten van QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation>Schaalmethode voor weergave met hoge pixeldichtheid (hdpi) (toegepast na opnieuw starten van QElectroTech):</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation>Taal</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation>Teksten</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation>Elementteksten</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation>Lettertype:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>°</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Grootte :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Rotatie :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Losse teksten</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Overige teksten</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>Het raster moet geactiveerd zijn om de wijzigingen te kunnen zien.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Verplaatsing van selectie met pijltjestoetsen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>Pijltje links / rechts in x-richting: (1 - 30)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Pijltje omhoog / omlaag in y-richting: (1 - 30)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>Verplaatsing van selectie met ALT + pijltjestoetsen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>ALT + Pijltje links / rechts in x-richting: (1 - 9)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>ALT + Pijltje omhoog / omlaag in y-richting: (1 - 9)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>Automatisch een backup van projecten maken (toegepast na herstarten van QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>Vergeet elementlabels bij kopiëren/plakken</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>Exporteer de terminals in de naamgeving</translation>
</message>
@@ -3286,133 +3291,158 @@ Hieronder kunt u de standaardtekst voor nieuwe elementen hiervan opgeven:</trans
<translation>Algemene configuratie</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation>Naar boven afronden bij meer dan 0,5</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation>Altijd naar boven afronden</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation>Altijd naar beneden afronden</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation>Naar boven afronden bij meer dan 0.75</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation>Niet afronden</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>Algemeen</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>Systeem</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Arabisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Braziliaans</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Catalaans</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Tsjechisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Duits</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Deens</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Grieks</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Engels</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Spaans</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Frans</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Kroatisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Italiaans</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation>Japans</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Pools</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Portugees</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Roemeens</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Russisch</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Sloveens</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Nederlands</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation>Noors</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Belgisch Vlaams</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Turks</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Hongaars</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation>Mongools</translation>
</message>
@@ -5279,239 +5309,239 @@ Wilt u de wijzigingen opslaan?</translation>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation>LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation>QElectroTech titelbloksjablonen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation>Mijn titelbloksjablonen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Einde</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Verbergen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Herstellen</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>Verberg &amp;alle schemabewerkingsvensters</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Herstel alle schemabewerkingsvensters</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Verberg alle elementbewerkingsvensters</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Herstel alle elementbewerkingsvensters</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Verberg alle titelblokbewerkingsvensters</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Herstel alle titelblokbewerkingsvensters</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Nieuw schemabewerkingsvenster</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Nieuw elementbewerkingsvenster</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>QElectroTech afsluiten</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Minimaliseer QElectroTech naar het systeemvak</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Herstel QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Schemabewerkingsvensters</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Elementbewerkingsvensters</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Titelblokbewerkingsvensters</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Het volgende herstelbestand is gevonden,&lt;br&gt;Wilt u het openen ?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;De volgende herstelbestanden zijn gevonden,&lt;br&gt;Wilt u ze openen ?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>Herstelbestanden</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Gebruik: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Definieer de map voor de elementencollectie
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Definieer de map voor de titelbloksjablonencollectie
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Definieer de configuratiemap
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Definieer de taalbestandenmap
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Laden... Initialisatie van de elementencollectie-cache</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Laden... Schemabewerker</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Laden... Openen van bestanden</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Schema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Electrisch</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>Configureer QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Laden...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Laden... systeemvakpictogram</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5520,7 +5550,7 @@ Wilt u de wijzigingen opslaan?</translation>
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -8857,7 +8887,7 @@ Wilt u deze vervangen ?</translation>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation>dit is een fout in de code</translation>
@@ -12357,7 +12387,7 @@ De andere velden hebben nu geen betekenis.</translation>
<message>
<location filename="../sources/TerminalStrip/ui/terminalstripeditor.ui" line="191"/>
<source>Degrouper les bornes</source>
<translation>Degroepeer terminals</translation>
<translation>Terminals degroeperen</translation>
</message>
<message>
<location filename="../sources/TerminalStrip/ui/terminalstripeditor.ui" line="212"/>
@@ -12368,7 +12398,7 @@ De andere velden hebben nu geen betekenis.</translation>
<message>
<location filename="../sources/TerminalStrip/ui/terminalstripeditor.ui" line="217"/>
<source>Fusible</source>
<translation>Gezekerd</translation>
<translation>Zekering</translation>
</message>
<message>
<location filename="../sources/TerminalStrip/ui/terminalstripeditor.ui" line="222"/>
@@ -12403,12 +12433,12 @@ De andere velden hebben nu geen betekenis.</translation>
<message>
<location filename="../sources/TerminalStrip/ui/terminalstripeditor.ui" line="269"/>
<source>Étage :</source>
<translation>Etages :</translation>
<translation>Niveau :</translation>
</message>
<message>
<location filename="../sources/TerminalStrip/ui/terminalstripeditor.ui" line="276"/>
<source>Grouper les bornes</source>
<translation>Terminalgroep</translation>
<translation>Terminals groeperen</translation>
</message>
<message>
<location filename="../sources/TerminalStrip/ui/terminalstripeditor.ui" line="283"/>
+150 -120
View File
@@ -3045,41 +3045,41 @@ Litery i cyfry mogą być używane.</translation>
<translation>Użyj kolorów systemu</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation>Ścieżka do kolekcji użytkownika</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation>Ścieżka do tabliczek rysunkowych użytkownika</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation>Ścieżka do kolekcji wspólnej</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation>Domyślne</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>Przeglądaj...</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>(ponownie załaduj kolekcję elementów aby wprowadzić zmainy)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Projekty</translation>
</message>
@@ -3089,41 +3089,41 @@ Litery i cyfry mogą być używane.</translation>
<translation>Użyj gestów gładzika</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>Użyj numerów arkuszy zamiast ich pozycji w projekcie</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation>Numeruj kolumny tabliczki rysunkowej zaczynając od 0 (1 przy braku zaznaczenia)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>Dezaktywuj</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation> min</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>Wyróżnij w panelu elementy wstawiane jako nowe</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>Każdy element posiada puste pole, przeznaczone na informacje o autorze, licencji i inne informacje, które uznasza za istotne
Tutaj możesz określić domyślną zawartość tego pola:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>Zmiany zostaną wdrożone przy kolejnym uruchomieniu QElectroTech</translation>
</message>
@@ -3133,62 +3133,62 @@ Tutaj możesz określić domyślną zawartość tego pola:</translation>
<translation></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>Automatyczne tworzenie kopii zapasowych projektu (zmiany zostaną wdrożone przy kolejnym uruchomieniu QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation>Kolekcje</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation>Dostęp do kolekcji</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation>Katalog kolekcji wspólnej</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation>Katalog kolekcji użytkownika</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation>Katalog tabliczek rysunkowych użytkownika</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Zarządzanie elementami</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation>Tutaj możesz zdefiniować domyślny wygląd tekstów w QElectroTech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation>Siatka + klawiatura</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>Siatka: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>Edytor schematów xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>Edytor schematów yGrid</translation>
</message>
@@ -3203,96 +3203,101 @@ Tutaj możesz określić domyślną zawartość tego pola:</translation>
<translation>Użyj zakładek (zmiany zostaną zastosowane przy kolejnym urucho&amp;mieniu QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation>Język</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation>Tekst</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation>Tekst elemenu</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation>Atrybuty:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>°</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Rozmiar:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Obrót:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Teksty niezależne</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Inne teksty</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>Siatka musi być aktywna aby móc wprowadzać zmiany.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Przesunięcie klawiszem: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>Edytor schematów (klawisz: lewo/prawo) xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Edytor schematów (klawisz: góra/dół) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>Przesunięcie za pomocą klawisza Alt: 1 - 9</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>Edytor schematów (klawisz: lewo/prawo) xGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Edytor schematów (klawisz: góra/dół) yGrid</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>Nie przechowuj etykiet elementów podczas wklejania kopii</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>Ekspotr oznaczeń zacisków do dokumentacji</translation>
</message>
@@ -3302,133 +3307,158 @@ Tutaj możesz określić domyślną zawartość tego pola:</translation>
<translation>Pozwól na powiększenie poza arkusz</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>Ogólne</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>Systemowy</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Arabski</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Brazylijski</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Kataloński</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Czeski</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Niemiecki</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Duński</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Grecki</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Angielski</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Hiszpański</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Francuski</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Chorwacki</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Włoski</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation>Japoński</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Polski</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Portugalski</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Rumuński</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Rosyjski</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Soweński</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Holenderski</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation>Norweski</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Belgijski-Flamandzki</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Turecki</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Węgierski</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation>Mongolski</translation>
</message>
@@ -5299,133 +5329,133 @@ Czy chcesz zapisać zmiany?</translation>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation>LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation>Tabliczki rysunkowe QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation>Tabliczki rysunkowe użytkownika</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Zakończ</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Ukryj</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Pokaż</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Ukryj wszystkie edytory schematów</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Pokaż wszystkie edytory schematów</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Ukryj wszystkie edytory elementów</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Pokaż wszystkie edytory elementów</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Ukryj wszystkie edytory tabliczek rysunkowych</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Pokaż wszystkie edytory tabliczek rysunkowych</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Nowy edytor schematów</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Nowy edytor elementów</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Zamknij QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Zminimalizuj QElectroTech do systemowego zasobnika</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Pokaż QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Edytory schematów</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Edytory elementów</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Edytory tabliczek rysunkowych</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Znaleziono następujący plik przywracania,&lt;br&gt;Czy chcesz go otworzyć?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Znaleziono następujące pliki przywracania,&lt;br&gt;Czy chcesz je otworzyć?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>Przywróć plik</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Użyć: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5442,7 +5472,7 @@ Dostępne opcje:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5451,107 +5481,107 @@ Dostępne opcje:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Określ katalog elementów
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> -common-tbt-dir=DIR Określ katalog kolekcji szablonów tabliczek rysunkowych
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Określ konfigurację katalogu
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Określ katalog zawierający pliki językowe
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Ładowanie... Inicjowanie pamięci podręcznej kolekcji elementów</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Ładowanie... Edytor schematów</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Ładowanie ... Otwieranie plików</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Schemat</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Elektryczny</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>Konfiguracja QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Ładowanie ...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Ładowanie ... Ikona w zasobniku systemowym</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
@@ -8891,7 +8921,7 @@ Czy chcesz ją zastąpić?</translation>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation>to jest błąd w kodzie</translation>
+150 -120
View File
@@ -3033,41 +3033,41 @@ that you create. Text and number inputs are
<translation>Usar cores de sistema</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Projectos</translation>
</message>
@@ -3077,40 +3077,40 @@ that you create. Text and number inputs are
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation type="unfinished">Destacar no painel os elementos recém integrados</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
@@ -3123,62 +3123,62 @@ form
</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Gestão de elementos</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation type="unfinished"></translation>
</message>
@@ -3193,96 +3193,101 @@ form
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation type="unfinished">Fonte :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation type="unfinished"></translation>
</message>
@@ -3292,133 +3297,158 @@ form
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>Geral</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
@@ -5302,133 +5332,133 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished">LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished">Molduras QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished">Molduras do utilizador</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Sair</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Esconder</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Ver</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Esconder os editores de esquemas</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Mostrar os editores de esquemas</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Esconder os editores de elementos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Mostrar os editores de elementos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Esconder todos os editores de moldura</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Mostrar todos os editores de molduras</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Novo editor de esquema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Novo editor de elemento</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Fechar QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Minimizar QElectroTech para a bandeja de sistema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Restaurar QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Editores de esquemas</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Editores de elementos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Editores de molduras</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Utilização: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5445,7 +5475,7 @@ Opções disponiveis:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5454,105 +5484,105 @@ Opções disponiveis:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Define a directoria da colecção de elementos
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Definir a pasta da colecção de modelos de molduras</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Define a directoria de configuração
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Define a directoria dos ficheiros de linguagem</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>A carregar... a Inicializar cache da colecção de elementos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>A carregar... abertura dos ficheiros</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Esquema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Eléctrico</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation type="unfinished">Configurar QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>A carregar...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>A carregar... Ícone da bandeja de sistema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
@@ -8845,7 +8875,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
+150 -120
View File
@@ -3033,23 +3033,23 @@ que você cria. Entradas de texto e números
<translation>Utilizar as cores do sistema</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Projetos</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>Use números de página em vez de sua posição no projeto</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation>Numere as colunas a partir de 0 (1 caso contrário)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>Backup automático de projetos (aplicado no próximo lançamento do QElectroTech)</translation>
</message>
@@ -3059,12 +3059,12 @@ que você cria. Entradas de texto e números
<translation>Utilizar gestos do touch pad</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>Não manter rótulos de elementos ao copiar e colar</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation>Exportar os terminais na nomenclatura</translation>
</message>
@@ -3079,114 +3079,114 @@ que você cria. Entradas de texto e números
<translation>Formulário</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation>Endereço de usuário coletados</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation>Endereço de coletados comuns</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation>Por padrão</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>Personalizado...</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>(Recarregue as coleções dos elementos para aplicar as mudanças)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>Inválido</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation> min</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation>Coleções</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation>Acesso a coleções</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation>Pasta de coleção padrão</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation>Pasta de coleção do usuário</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation>Pasta de armazenamento do usuário</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Gestão de elementos</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>Destacar no painel os elementos recém integrados</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>Cada elemento inclui informações sobre seus autores, licença ou qualquer outra informação que você considera útil em um campo livre.
Aqui você pode especificar o valor padrão deste campo para os itens que você irá criar :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>Aplicado ao próximo lançamento do QElectroTech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation>Aqui você pode definir a aparência padrão de diferentes textos QElectroTech</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation>Grade + Teclado</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>Grade: 1-30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>Editor de diagrama Grade X</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>Editor de diagrama Grade Y</translation>
</message>
@@ -3201,222 +3201,252 @@ Aqui você pode especificar o valor padrão deste campo para os itens que você
<translation>Usar as guias (aplicadas ao próximo lança&amp;mento da QElectroTech)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation>Línguas</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation>Textos</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation>Textos dos elementos</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation>Fonte:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>º</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Largura:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Rotação :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Textos independentes</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Outros textos</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>A Grade deve estar ativa para poder ver as modificações.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Movimento do teclado: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>Editor de diagrama (tecla: esquerda / direita) XGrade</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Editor de diagrama (tecla: cima / baixo) YGrade</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>Movimento do teclado com a tecla ALT: 1 - 9</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>Editor de diagrama (tecla: esquerda / direita) XGrade</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Editor de diagrama (tecla: cima / baixo) YGrade</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>Geral</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>Sistema</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Árabe</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Português BR</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Catalão</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Checo</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Alemão</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Dinamarquês</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Grego</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Inglês</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Espanhol</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Francês</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Croata</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Italiano</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation>Japonês</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Polonês</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Português</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Romeno</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Russo</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Sloveno</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Holandês</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation>Noruega</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Belgo-Flamengo</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Turco</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Húngaro</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation>Mongol</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation>Caminho do armazenamento do usuário</translation>
</message>
@@ -5284,211 +5314,211 @@ Você deseja salvar as alterações ?</translation>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Carregando... Inicialização do cache das coleções de elementos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Carregando... Editor de esquema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Carregando... Abertura de arquivos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation>LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation>Blocos de título do QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation>Blocos de título do usuário</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Esquema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Elétrico</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>Configurar o QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Carregando...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Carregando... Ícone da bandeja do sistema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>Sai&amp;r</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Esconder</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Mostrar</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Esconder todos os editores de esquema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Mostrar todos os editores de esquemas</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Esconder os editores de elementos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Mostrar todos os editores de elementos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Esconder todos os editores de blocos de título</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Mostrar todos os editores de blocos de título</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Novo editor de esquemas</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Novo editor de elementos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Fechar o aplicativo QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Minimizar QElectroTech para a bandeja do sistema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Restaurar QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Editores de esquemas</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Editores de elementos</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Editores de blocos de título</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;O arquivo de restauração a seguir foi encontrado,&lt;br&gt;Deseja abri-lo ?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Os arquivos de restauração a seguir foi encontrados,&lt;br&gt;Deseja abri-los ?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>Restaurar o arquivo</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Utilização: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5497,7 +5527,7 @@ Você deseja salvar as alterações ?</translation>
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5514,28 +5544,28 @@ Opções disponíveis:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Define a pasta da coleção de elementos
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Definir a pasta da coleção de modelos de blocos de título
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Define a pasta de configuração
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Define a pasta dos arquivos de idioma
@@ -8861,7 +8891,7 @@ Deseja substituí-lo?</translation>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation>este é um erro no código</translation>
+150 -120
View File
@@ -2999,41 +2999,41 @@ that you create. Text and number inputs are
<translation>Utilizează culorile de sistem</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Proiecte</translation>
</message>
@@ -3043,40 +3043,40 @@ that you create. Text and number inputs are
<translation>Utilizează gesturi touchpad</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation type="unfinished">Evidențiază elementele integrate recent în panou</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
@@ -3086,62 +3086,62 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished">Formular</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Administrare elemente</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation type="unfinished"></translation>
</message>
@@ -3156,96 +3156,101 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation type="unfinished">Font :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation type="unfinished"></translation>
</message>
@@ -3255,133 +3260,158 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>General</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>Sistem</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Arabă</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Catalană</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Cehă</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Germană</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Greacă</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Engleză</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Spaniolă</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Franceză</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Croată</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Italiană</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Poloneză</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Portugheză</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Română</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Rusă</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Slovenă</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Olandeză</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Belgiană-flamandă</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
@@ -5237,211 +5267,211 @@ Doriți să se salveze modificările ?</translation>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Se încarcă... Se inițializează cache colecție elemente</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Se încarcă... Se deschid fișiere</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished">LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished">Cartușe QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished">Cartușe utilizator</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Schemă</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Electric</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>Configurare QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Se încarcă...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Se încarcă... Pictograma din bara de sistem</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Termină</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Ascunde</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Arată</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Ascunde editoarele de schemă</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Arată toate editoarele de schemă</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Ascunde toate editoarele de elemente</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Arată toate editoarele de elemente</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Ascunde toate editoarele de cartuș</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Arată toate editoarele de cartuș</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>Editor de schemă &amp;nou</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>Editor de element &amp;nou</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Închide aplicația QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Minimizează QElectroTech în bara de sistem</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Restaurează QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Editoare de schemă</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Editoare element</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation type="unfinished">Editoare cartuș</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Utilizare : </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5450,7 +5480,7 @@ Doriți să se salveze modificările ?</translation>
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5467,26 +5497,26 @@ Opțiuni disponibile:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation>--common-elements-dir=DIR Definește dosarul colecției de elemente
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Definește dosarul colecției de cartușe</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Definește dosarul de configurare</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation>--config-dir=DIR Definește dosarul care conține fișierele de limbă</translation>
@@ -8792,7 +8822,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
+150 -120
View File
@@ -3022,41 +3022,41 @@ that you create. Text and number inputs are
<translation>Использовать системные цвета</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Проекты</translation>
</message>
@@ -3066,40 +3066,40 @@ that you create. Text and number inputs are
<translation>Использовать жесты сенсорной панели</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation type="unfinished">Выделять недавно добавленные элементы в панели</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
@@ -3109,62 +3109,62 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished">Форма</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Управление элементами</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation type="unfinished"></translation>
</message>
@@ -3179,96 +3179,101 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation type="unfinished">Шрифт :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation type="unfinished"></translation>
</message>
@@ -3278,135 +3283,160 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation>Разрешить масштаб меньше размера страницы</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>Общее</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translatorcomment>Система?</translatorcomment>
<translation>Системный</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Арабский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Бразильский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Каталонский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Чешский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Немецкий</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Датский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Греческий</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>Английский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>Испанский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Французский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Хорватский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>Итальянский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Польский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Португальский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Румынский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Русский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Словенский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translatorcomment>Немецкий/Нидерландский</translatorcomment>
<translation>Голландский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Бельгийский</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
@@ -5271,212 +5301,212 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Загрузка...Инициализация кэша коллекций элементов</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Загрузка... Редактор страниц</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Загрузка... Открытие файлов</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished">LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished">Штампы QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished">Штампы пользователя</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Схема</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Электрическая</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>Настройка QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Загрузка...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Загрузка...Значок в трее</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Выход</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Скрыть</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Показать</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>&amp;Скрыть редактор схем</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>&amp;Показать редактор схем</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>&amp;Скрыть редактор элементов</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>&amp;Показать редактор элементов</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Скрыть редактор штампов</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Показать редактор штампов</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Новый редактор схем</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Новый редактор элементов</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>Закрыть QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Свернуть QElectroTech в трей</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>Восстановить QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Редакторы схем</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Редакторы элементов</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translatorcomment>??</translatorcomment>
<translation>Редакторы штампов</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Использование: </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5485,7 +5515,7 @@ Voulez-vous enregistrer les modifications ?</source>
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5502,28 +5532,28 @@ Options disponibles :
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Задаёт каталог с коллекцией элементов
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Задаёт каталог с коллекцией штампов
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Задаёт каталог конфигураций
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Задаёт каталог с языковыми файлами
@@ -8833,7 +8863,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
+150 -120
View File
@@ -3021,364 +3021,394 @@ that you create. Text and number inputs are
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
@@ -5233,218 +5263,218 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5455,25 +5485,25 @@ Options disponibles :
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation type="unfinished"></translation>
@@ -8773,7 +8803,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
+150 -120
View File
@@ -2998,41 +2998,41 @@ that you create. Text and number inputs are
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation type="unfinished"></translation>
</message>
@@ -3042,45 +3042,45 @@ that you create. Text and number inputs are
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation type="unfinished"></translation>
</message>
@@ -3090,62 +3090,62 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation type="unfinished"></translation>
</message>
@@ -3160,91 +3160,96 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation type="unfinished"></translation>
</message>
@@ -3254,133 +3259,158 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
@@ -5236,218 +5266,218 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5458,25 +5488,25 @@ Options disponibles :
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation type="unfinished"></translation>
@@ -8789,7 +8819,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
+150 -120
View File
@@ -2996,23 +2996,23 @@ that you create. Text and number inputs are
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation type="unfinished"></translation>
</message>
@@ -3022,12 +3022,12 @@ that you create. Text and number inputs are
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation type="unfinished"></translation>
</message>
@@ -3042,118 +3042,118 @@ that you create. Text and number inputs are
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation type="unfinished"></translation>
</message>
@@ -3168,217 +3168,247 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
@@ -5233,218 +5263,218 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5455,25 +5485,25 @@ Options disponibles :
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation type="unfinished"></translation>
@@ -8773,7 +8803,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
+150 -120
View File
@@ -3049,46 +3049,46 @@ atayabilirsiz. Metin ve sayı girişleri ayrıca mevcut.</translation>
<translation>Sistem renklerini kullan</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation>Kullanıcı Kütüphanesi Yolu</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation>Ortak Kütüphane Yolu</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation>Varsayılan</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation>Göz Atın...</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation>(Değişiklikleri uygulamak için öğe kütüphanelerini yeniden yüklemelisiniz)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation>Projeler</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation>Projelerin otomatik olarak yedeklenmesi (QElectroTech&apos;in bir sonraki açılışında uygulanır)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation>#Kopyala-Yapıştır yaparken öğelerin etiketlerinden tutmayın</translation>
</message>
@@ -3098,29 +3098,29 @@ atayabilirsiz. Metin ve sayı girişleri ayrıca mevcut.</translation>
<translation>Touchpad hareketlerini kullan</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation>Projedeki pozisyonlarının yerine sayfa numaralandırmasını kullan</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation>Başlık bloğunun 0&apos;dan başlayarak sütunlarını numaralandır(Aksi takdirde &quot;1&quot;)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translatorcomment>I am not sure about this. It should be checked.</translatorcomment>
<translation>#Terminalleri tanımlandırmada dışa aktar</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation>Devredışı</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation> dk</translation>
@@ -3131,80 +3131,80 @@ atayabilirsiz. Metin ve sayı girişleri ayrıca mevcut.</translation>
<translation>#Yakınlaştırmanın sayfanın ötesine geçmesine izin ver</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translatorcomment>It does not exist in the english translation.</translatorcomment>
<translation>Kullanıcı başlık blokları dizini</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation>Koleksiyonlar</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation>Koleksiyonlara Erişim</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation>Ortak koleksiyon dizini</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation>Kullanıcı koleksiyon dizini</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation>Kullanıcı başlık blokları dizini</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation>Öğe Yönetimi</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation>#Yeni entegre edilen öğeleri panelde vurgulayın</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation>#Her öğe,boş bi alanda &quot;Yazarları, Lisansı veya başka bir alanda yararlı bulduğunuz veriler&quot; hakkında bilgiler içerir.
#Burada, oluşturacağınız öğeler için bu alanın varsayılan içeriğini belirtebilirsiniz :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation>QElectroTech&apos;in bir sonraki başlatma işleminde uygulanır</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation>Burada çeşitli metinlerin QElectroTech içinde varsayılan görünümünü tanımlayabilirsiniz</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation>Izgara + Klavye</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation>Izgara: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation>Diyagram Editörü xIzgarası</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation>Diyagram Editörü yIzgarası</translation>
</message>
@@ -3219,217 +3219,247 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation>&amp;Sekmeleri kullan (QElectroTech&apos;in bir sonraki başlatılmasında uygulanır)</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation>Metinler</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation>Öğelerin Metinleri</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation>Yazı Tipi :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation>°</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation>Uzunluk :</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation>Dönüş:</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation>Bağımsız Metinler</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation>Diğer Metinler</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation>Değişiklikleri görebilmek için Izgara&apos;nın etkin olması gerekir.</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation>Klavye hareketi: 1 - 30</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation>Diyagram Editörü (Tuş : Sol / Sağ) xIzgara</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Diyagram Editörü (Tuş : Yukarı / Aşağı) yIzgarası</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation>ALT tuşuyla Klavye hareketi : 1 - 9 </translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation>Diyagram Editörü (Tuş : Sol / Sağ) xIzgara</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation>Diyagram Editörü (Tuş : Yukarı / Aşağı) yIzgarası</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation>Genel</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation>Sistem</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation>Arapça</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation>Brezilyaca</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation>Katalanca</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation>Çekce</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation>Almanca</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation>Danca</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation>Yunanca</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation>İngilizce</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation>İspanyolca</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation>Fransızca</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation>Hırvatça</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation>İtalyanca</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation>Polonyaca</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation>Portekizce</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation>Romence</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation>Rusça</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation>Slovakça</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation>Hollancada</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation>Flemenkçe</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation>Türkçe</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation>Macarca</translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
@@ -5300,211 +5330,211 @@ Değişiklikleri kaydetmek ister misiniz ?</translation>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation>Yükleniyor... Ürün kütüphanelerinin önbelleği başlatılıyor</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation>Yükleniyor ... Şema Editörü</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation>Yükleniyor ... Açılış dosyaları</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished">LTR</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished">QElectroTech Antetleri</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished">Kullanıcı Antetleri</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation>Q</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation>QET</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Şema</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation>Elektrik</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation>QElectroTech&apos;i yapılandır</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation>Yükleniyor...</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation>Yükleniyor ... systray icon</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation>&amp;Çıkış</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation>&amp;Gizle</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation>&amp;Geri Yükle</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation>Tüm şema düzenleyicilerini &amp;gizle</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation>Tüm şema düzenleyicilerini &amp;geri yükle</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation>Tüm öğe düzenleyicilerini &amp;gizle</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation>Tüm öğe düzenleyicilerini &amp;geri yükle</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>Tüm Antet düzenleyicileri &amp;gizle</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation>&amp;Tüm Antet düzenlemelerini geri yükle</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation>&amp;Yeni şema düzenleyici</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation>&amp;Yeni öğe editörü</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation>QElectroTech uygulamasını kapatır</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation>Systray&apos;da QElectroTech&apos;i azaltın</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation>QElectroTech&apos;i geri yükle</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation>QElectroTech</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation>Şema Editörleri</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation>Öğe Editörleri</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation>Anteti Düzenle</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Aşağıdaki geri yükleme dosyası bulundu,&lt;br&gt;Açmak ister misiniz ?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation>&lt;b&gt;Aşağıdaki geri yükleme dosyaları bulundu,&lt;br&gt;Açmak ister misiniz ?&lt;/b&gt;&lt;br&gt;</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation>Dosyayı geri yükle</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation>Kullanım : </translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
@@ -5513,7 +5543,7 @@ Değişiklikleri kaydetmek ister misiniz ?</translation>
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5530,28 +5560,28 @@ Mevcut seçenekler:
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation> --common-elements-dir=DIR Öğelerin kütüphanesinin klasörünü tanımla
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation> --common-tbt-dir=DIR Antet şablonu kütüphanesinin klasörünü tanımlayın
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation> --config-dir=DIR Yapılandırma klasörünü ayarla
</translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation> --lang-dir=DIR Dil dosyalarını içeren klasörü ayarlayın
@@ -8870,7 +8900,7 @@ Değiştirmek ister misiniz?</translation>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
+150 -120
View File
@@ -2992,23 +2992,23 @@ that you create. Text and number inputs are
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="93"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="128"/>
<source>Projets</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="146"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="126"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
<source>Numéroter les colonnes de cartouche à partir de 0 (1 sinon)</source>
<extracomment>Choix de l&apos;increment de depart 1 ou 0</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="112"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
<translation type="unfinished"></translation>
</message>
@@ -3018,12 +3018,12 @@ that you create. Text and number inputs are
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="119"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="166"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="201"/>
<source>Exporter les bornes dans la nomenclature</source>
<translation type="unfinished"></translation>
</message>
@@ -3038,118 +3038,118 @@ that you create. Text and number inputs are
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="364"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="396"/>
<source>Chemin de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="350"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="382"/>
<source>Chemin de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="200"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="221"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="256"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="270"/>
<source>Par defaut</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="205"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="226"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="261"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="275"/>
<source>Parcourir...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="283"/>
<source>(Recharger les collections d&apos;éléments pour appliquer les changements)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="136"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="171"/>
<source>Désactivé</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="139"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<source> min</source>
<comment>minute</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="378"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="410"/>
<source>Chemin des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="174"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
<source>Collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="180"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="215"/>
<source>Accès aux collections</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="192"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
<source>Répertoire de la collection commune</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="213"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
<source>Répertoire de la collection utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="255"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
<source>Répertoire des cartouches utilisateur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="300"/>
<source>Gestion des éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<source>Mettre en valeur dans le panel les éléments fraîchement intégrés</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="316"/>
<source>Chaque élément embarque des informations sur ses auteurs, sa licence, ou tout autre renseignement que vous jugerez utile dans un champ libre.
Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments que vous créerez :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="318"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="353"/>
<source>Appliqué au prochain lancement de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="358"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="393"/>
<source>Vous pouvez définir ici l&apos;apparence par defaut des differents textes de QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="541"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="576"/>
<source>Grille + Clavier</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="547"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="582"/>
<source>Grille : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="614"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="649"/>
<source>DiagramEditor xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="581"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="616"/>
<source>DiagramEditor yGrid</source>
<translation type="unfinished"></translation>
</message>
@@ -3164,217 +3164,247 @@ Vous pouvez spécifier ici la valeur par défaut de ce champ pour les éléments
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="309"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
<source>Méthode de mise à l&apos;echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="344"/>
<source>Langues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="352"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="387"/>
<source>Textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="372"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="407"/>
<source>Textes d&apos;éléments</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="385"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="451"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="497"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="420"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="486"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="532"/>
<source>Police :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="458"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="430"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="493"/>
<source>°</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="405"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="440"/>
<source>Longueur :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="415"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="444"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="450"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="479"/>
<source>Rotation :</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="438"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="473"/>
<source>Textes indépendants</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="491"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="526"/>
<source>Autres textes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="588"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="623"/>
<source>La Grille doite etre active pour pouvoir voir les modifications.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="637"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="672"/>
<source>Déplacement au clavier : 1 - 30</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="687"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="722"/>
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="694"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="729"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="717"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="723"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="758"/>
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="752"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="787"/>
<source>DiagramEditor (touche : haut / bas) yGrid</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="240"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
<source>Arrondi supérieur pour 0.5 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
<source>Toujours arrondi supérieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="47"/>
<source>Toujours arrondi inférieur</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
<source>Arrondi supérieur pour 0.75 et plus</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
<source>Pas d&apos;arrondi</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<source>Général</source>
<comment>configuration page title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="258"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="290"/>
<source>Système</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="262"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="294"/>
<source>Arabe</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="263"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="295"/>
<source>Brézilien</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="264"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="296"/>
<source>Catalan</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="265"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="297"/>
<source>Tchèque</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="266"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="298"/>
<source>Allemand</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="267"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="299"/>
<source>Danois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="268"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="300"/>
<source>Grec</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="269"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="301"/>
<source>Anglais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="270"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="302"/>
<source>Espagnol</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="271"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="303"/>
<source>Français</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="272"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="304"/>
<source>Croate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="273"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="305"/>
<source>Italien</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="274"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="306"/>
<source>Japonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="275"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="307"/>
<source>Polonais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="276"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="308"/>
<source>Portugais</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="277"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="309"/>
<source>Roumains</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="278"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="310"/>
<source>Russe</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="279"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="311"/>
<source>Slovène</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="280"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="312"/>
<source>Pays-Bas</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="281"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="313"/>
<source>Norvege</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="282"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="314"/>
<source>Belgique-Flemish</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="283"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="315"/>
<source>Turc</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="284"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="316"/>
<source>Hongrois</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="285"/>
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="317"/>
<source>Mongol</source>
<translation type="unfinished"></translation>
</message>
@@ -5227,218 +5257,218 @@ Voulez-vous enregistrer les modifications ?</source>
<context>
<name>QETApp</name>
<message>
<location filename="../sources/qetapp.cpp" line="104"/>
<location filename="../sources/qetapp.cpp" line="112"/>
<source>Chargement... Initialisation du cache des collections d&apos;éléments</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="115"/>
<location filename="../sources/qetapp.cpp" line="123"/>
<source>Chargement... Éditeur de schéma</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="120"/>
<location filename="../sources/qetapp.cpp" line="128"/>
<source>Chargement... Ouverture des fichiers</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="218"/>
<location filename="../sources/qetapp.cpp" line="226"/>
<source>LTR</source>
<comment>Translate this string to RTL if you are translating to a Right-to-Left language, else translate to LTR</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="416"/>
<location filename="../sources/qetapp.cpp" line="424"/>
<source>Cartouches QET</source>
<comment>title of the title block templates collection provided by QElectroTech</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="436"/>
<location filename="../sources/qetapp.cpp" line="444"/>
<source>Cartouches utilisateur</source>
<comment>title of the user&apos;s title block templates collection</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1178"/>
<location filename="../sources/qetapp.cpp" line="1197"/>
<source>Q</source>
<comment>Single-letter example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1180"/>
<location filename="../sources/qetapp.cpp" line="1199"/>
<source>QET</source>
<comment>Small example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1182"/>
<location filename="../sources/qetapp.cpp" line="1201"/>
<source>Schema</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1184"/>
<location filename="../sources/qetapp.cpp" line="1203"/>
<source>Electrique</source>
<comment>Normal example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1186"/>
<location filename="../sources/qetapp.cpp" line="1205"/>
<source>QElectroTech</source>
<comment>Long example text - translate length, not meaning</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1663"/>
<location filename="../sources/qetapp.cpp" line="1682"/>
<source>Configurer QElectroTech</source>
<comment>window title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1807"/>
<location filename="../sources/qetapp.cpp" line="1826"/>
<source>Chargement...</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1905"/>
<location filename="../sources/qetapp.cpp" line="1924"/>
<source>Chargement... icône du systray</source>
<comment>splash screen caption</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1909"/>
<location filename="../sources/qetapp.cpp" line="1928"/>
<source>QElectroTech</source>
<comment>systray menu title</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1912"/>
<location filename="../sources/qetapp.cpp" line="1931"/>
<source>&amp;Quitter</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1914"/>
<location filename="../sources/qetapp.cpp" line="1933"/>
<source>&amp;Masquer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1916"/>
<location filename="../sources/qetapp.cpp" line="1935"/>
<source>&amp;Restaurer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1918"/>
<location filename="../sources/qetapp.cpp" line="1937"/>
<source>&amp;Masquer tous les éditeurs de schéma</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1921"/>
<location filename="../sources/qetapp.cpp" line="1940"/>
<source>&amp;Restaurer tous les éditeurs de schéma</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1924"/>
<location filename="../sources/qetapp.cpp" line="1943"/>
<source>&amp;Masquer tous les éditeurs d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1927"/>
<location filename="../sources/qetapp.cpp" line="1946"/>
<source>&amp;Restaurer tous les éditeurs d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1930"/>
<location filename="../sources/qetapp.cpp" line="1949"/>
<source>&amp;Masquer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1933"/>
<location filename="../sources/qetapp.cpp" line="1952"/>
<source>&amp;Restaurer tous les éditeurs de cartouche</source>
<comment>systray submenu entry</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1936"/>
<location filename="../sources/qetapp.cpp" line="1955"/>
<source>&amp;Nouvel éditeur de schéma</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1938"/>
<location filename="../sources/qetapp.cpp" line="1957"/>
<source>&amp;Nouvel éditeur d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1940"/>
<location filename="../sources/qetapp.cpp" line="1959"/>
<source>Ferme l&apos;application QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1941"/>
<location filename="../sources/qetapp.cpp" line="1960"/>
<source>Réduire QElectroTech dans le systray</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1942"/>
<location filename="../sources/qetapp.cpp" line="1961"/>
<source>Restaurer QElectroTech</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="1959"/>
<location filename="../sources/qetapp.cpp" line="1978"/>
<source>QElectroTech</source>
<comment>systray icon tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2054"/>
<location filename="../sources/qetapp.cpp" line="2073"/>
<source>Éditeurs de schémas</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2064"/>
<location filename="../sources/qetapp.cpp" line="2083"/>
<source>Éditeurs d&apos;élément</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2075"/>
<location filename="../sources/qetapp.cpp" line="2094"/>
<source>Éditeurs de cartouche</source>
<comment>systray menu entry</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2127"/>
<location filename="../sources/qetapp.cpp" line="2146"/>
<source>&lt;b&gt;Le fichier de restauration suivant a é trouvé,&lt;br&gt;Voulez-vous l&apos;ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2130"/>
<location filename="../sources/qetapp.cpp" line="2149"/>
<source>&lt;b&gt;Les fichiers de restauration suivant on é trouvé,&lt;br&gt;Voulez-vous les ouvrir ?&lt;/b&gt;&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2145"/>
<location filename="../sources/qetapp.cpp" line="2164"/>
<source>Fichier de restauration</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2247"/>
<location filename="../sources/qetapp.cpp" line="2266"/>
<source>Usage : </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2249"/>
<location filename="../sources/qetapp.cpp" line="2268"/>
<source> [options] [fichier]...
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2250"/>
<location filename="../sources/qetapp.cpp" line="2269"/>
<source>QElectroTech, une application de réalisation de schémas électriques.
Options disponibles :
@@ -5449,25 +5479,25 @@ Options disponibles :
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2256"/>
<location filename="../sources/qetapp.cpp" line="2275"/>
<source> --common-elements-dir=DIR Definir le dossier de la collection d&apos;elements
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2259"/>
<location filename="../sources/qetapp.cpp" line="2278"/>
<source> --common-tbt-dir=DIR Definir le dossier de la collection de modeles de cartouches
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2262"/>
<location filename="../sources/qetapp.cpp" line="2281"/>
<source> --config-dir=DIR Definir le dossier de configuration
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../sources/qetapp.cpp" line="2264"/>
<location filename="../sources/qetapp.cpp" line="2283"/>
<source> --lang-dir=DIR Definir le dossier contenant les fichiers de langue
</source>
<translation type="unfinished"></translation>
@@ -8741,7 +8771,7 @@ Voulez-vous la remplacer ?</source>
<location filename="../sources/SearchAndReplace/ui/searchandreplacewidget.cpp" line="425"/>
<location filename="../sources/conductorproperties.cpp" line="826"/>
<location filename="../sources/factory/elementpicturefactory.cpp" line="581"/>
<location filename="../sources/qetapp.cpp" line="1999"/>
<location filename="../sources/qetapp.cpp" line="2018"/>
<location filename="../sources/titleblock/templatelocation.cpp" line="108"/>
<source>this is an error in the code</source>
<translation type="unfinished"></translation>
+2 -1
View File
@@ -20,6 +20,7 @@
#include "qetapp.h"
#include "singleapplication.h"
#include "utils/macosxopenevent.h"
#include "utils/qetsettings.h"
#include <QStyleFactory>
#include <QtConcurrent>
@@ -178,7 +179,7 @@ int main(int argc, char **argv)
#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
qputenv("QT_ENABLE_HIGHDPI_SCALING", "1");
QGuiApplication::setHighDpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy::PassThrough);
QGuiApplication::setHighDpiScaleFactorRoundingPolicy(QetSettings::hdpiScaleFactorRoundingPolicy());
#endif
+80 -61
View File
@@ -49,14 +49,17 @@
#endif
#ifdef QET_ALLOW_OVERRIDE_CED_OPTION
QString QETApp::common_elements_dir = QString();
QString QETApp::m_overrided_common_elements_dir = QString();
#endif
#ifdef QET_ALLOW_OVERRIDE_CTBTD_OPTION
QString QETApp::common_tbt_dir_ = QString();
#endif
#ifdef QET_ALLOW_OVERRIDE_CD_OPTION
QString QETApp::config_dir = QString();
#endif
QString QETApp::lang_dir = QString();
TitleBlockTemplatesFilesCollection *QETApp::m_common_tbt_collection;
TitleBlockTemplatesFilesCollection *QETApp::m_custom_tbt_collection;
@@ -66,8 +69,13 @@ uint QETApp::next_project_id = 0;
RecentFiles *QETApp::m_projects_recent_files = nullptr;
RecentFiles *QETApp::m_elements_recent_files = nullptr;
TitleBlockTemplate *QETApp::default_titleblock_template_ = nullptr;
QString QETApp::m_user_common_elements_dir = QString();
QString QETApp::m_user_custom_elements_dir = QString();
QString QETApp::m_common_element_dir = QString();
bool QETApp::m_common_element_dir_is_set = false;
QString QETApp::m_custom_element_dir = QString();
bool QETApp::m_custom_element_dir_is_set = false;
QString QETApp::m_user_custom_tbt_dir = QString();
QETApp *QETApp::m_qetapp = nullptr;
@@ -488,57 +496,62 @@ TitleBlockTemplatesCollection *QETApp::titleBlockTemplatesCollection(
*/
QString QETApp::commonElementsDir()
{
if (m_user_common_elements_dir.isEmpty())
if (m_common_element_dir_is_set)
{
return m_common_element_dir;
}
else
{
m_common_element_dir_is_set = true;
//Check if user define a custom path
//for the common collection
QSettings settings;
QString path = settings.value(
"elements-collections/common-collection-path",
"default").toString();
"elements-collections/common-collection-path",
"default").toString();
if (path != "default" && !path.isEmpty())
{
QDir dir(path);
if (dir.exists())
{
m_user_common_elements_dir = path;
return m_user_common_elements_dir;
m_common_element_dir = path;
return m_common_element_dir;
}
}
else {
m_user_common_elements_dir = "default";
}
}
else if (m_user_common_elements_dir != "default") {
return m_user_common_elements_dir;
}
#ifdef QET_ALLOW_OVERRIDE_CED_OPTION
if (common_elements_dir != QString()) return(common_elements_dir);
if (m_overrided_common_elements_dir != QString()) {
m_common_element_dir = m_overrided_common_elements_dir;
return(m_common_element_dir);
}
m_common_element_dir = QCoreApplication::applicationDirPath() + "/elements";
return m_common_element_dir;
#endif
#ifndef QET_COMMON_COLLECTION_PATH
/* in the absence of a compilation option,
* we use the elements folder, located next to the executable binary
* en l'absence d'option de compilation,
* on utilise le dossier elements, situe a cote du binaire executable
*/
return(QCoreApplication::applicationDirPath() + "/elements/");
/* in the absence of a compilation option,
* we use the elements folder, located next to the executable binary
*/
m_common_element_dir = QCoreApplication::applicationDirPath() + "/elements";
return m_common_element_dir;
#else
#ifndef QET_COMMON_COLLECTION_PATH_RELATIVE_TO_BINARY_PATH
#ifndef QET_COMMON_COLLECTION_PATH_RELATIVE_TO_BINARY_PATH
/* the compilation option represents a classic absolute
* or relative path
* l'option de compilation represente un chemin absolu
* ou relatif classique
*/
return(QUOTE(QET_COMMON_COLLECTION_PATH));
#else
m_common_element_dir = QUOTE(QET_COMMON_COLLECTION_PATH);
return m_common_element_dir;
#else
/* the compilation option represents a path
* relative to the folder containing the executable binary
* l'option de compilation represente un chemin
* relatif au dossier contenant le binaire executable
*/
return(QCoreApplication::applicationDirPath()
+ "/" + QUOTE(QET_COMMON_COLLECTION_PATH));
#endif
* relative to the folder containing the executable binary
*/
m_common_element_dir = QCoreApplication::applicationDirPath()
+ "/"
+ QUOTE(QET_COMMON_COLLECTION_PATH);
return m_common_element_dir;
#endif
#endif
}
}
/**
@@ -547,33 +560,34 @@ QString QETApp::commonElementsDir()
*/
QString QETApp::customElementsDir()
{
if (m_user_custom_elements_dir.isEmpty())
if (m_custom_element_dir_is_set)
{
return m_custom_element_dir;
}
else
{
m_custom_element_dir_is_set = true;
QSettings settings;
QString path = settings.value(
"elements-collections/custom-collection-path",
"default").toString();
"elements-collections/custom-collection-path",
"default").toString();
if (path != "default" && !path.isEmpty())
{
QDir dir(path);
if (dir.exists())
{
m_user_custom_elements_dir = path;
if(!m_user_custom_elements_dir.endsWith("/")) {
m_user_custom_elements_dir.append("/");
}
return m_user_custom_elements_dir;
{
m_custom_element_dir = path;
if(!m_custom_element_dir.endsWith("/")) {
m_custom_element_dir.append("/");
}
return m_custom_element_dir;
}
}
else {
m_user_custom_elements_dir = "default";
}
}
else if (m_user_custom_elements_dir != "default") {
return m_user_custom_elements_dir;
}
return(configDir() + "elements/");
m_custom_element_dir = configDir() + "elements/";
return m_custom_element_dir;
}
}
/**
@@ -601,14 +615,19 @@ QString QETApp::customElementsDirN()
}
/**
@brief QETApp::resetUserElementsDir
Reset the path of the user common and custom elements dir.
Use this function when the user path (common and/or custom) change.
*/
void QETApp::resetUserElementsDir()
* @brief QETApp::resetCollectionsPath
* Reset the path of the user and common element collection
* and also the user titleblock path.
* Use this function when one of these three path change.
*/
void QETApp::resetCollectionsPath()
{
m_user_common_elements_dir.clear();
m_user_custom_elements_dir.clear();
m_common_element_dir.clear();
m_common_element_dir_is_set = false;
m_custom_element_dir.clear();
m_custom_element_dir_is_set = false;
m_user_custom_tbt_dir.clear();
}
@@ -877,9 +896,9 @@ void QETApp::overrideCommonElementsDir(const QString &new_ced) {
QFileInfo new_ced_info(new_ced);
if (new_ced_info.isDir())
{
common_elements_dir = new_ced_info.absoluteFilePath();
if (!common_elements_dir.endsWith("/"))
common_elements_dir += "/";
m_overrided_common_elements_dir = new_ced_info.absoluteFilePath();
if (!m_overrided_common_elements_dir.endsWith("/"))
m_overrided_common_elements_dir += "/";
}
}
#endif
+10 -4
View File
@@ -83,7 +83,7 @@ class QETApp : public QObject
static QString customElementsDir();
static QString commonElementsDirN();
static QString customElementsDirN();
static void resetUserElementsDir();
static void resetCollectionsPath();
static QString commonTitleBlockTemplatesDir();
static QString customTitleBlockTemplatesDir();
static bool registerProject(QETProject *);
@@ -108,7 +108,7 @@ class QETApp : public QObject
@brief common_elements_dir
Directory containing the common elements collection
*/
static QString common_elements_dir;
static QString m_overrided_common_elements_dir;
#endif
#ifdef QET_ALLOW_OVERRIDE_CTBTD_OPTION
@@ -208,9 +208,15 @@ class QETApp : public QObject
static RecentFiles *m_projects_recent_files;
static RecentFiles *m_elements_recent_files;
static TitleBlockTemplate *default_titleblock_template_;
static QString m_user_common_elements_dir;
static QString m_user_custom_elements_dir;
static QString m_common_element_dir;
static bool m_common_element_dir_is_set;
static QString m_custom_element_dir;
static bool m_custom_element_dir_is_set;
static QString m_user_custom_tbt_dir;
public slots:
void systray(QSystemTrayIcon::ActivationReason);
@@ -20,6 +20,7 @@
#include "../../qetapp.h"
#include "../../qeticons.h"
#include "ui_generalconfigurationpage.h"
#include "../../utils/qetsettings.h"
#include <QFileDialog>
#include <QFontDialog>
@@ -37,6 +38,33 @@ GeneralConfigurationPage::GeneralConfigurationPage(QWidget *parent) :
QSettings settings;
//Appearance tab
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) // ###Qt 6:remove
ui->m_hdpi_round_policy_widget->setDisabled(true);
#else
ui->m_hdpi_round_policy_cb->addItem(tr("Arrondi supérieur pour 0.5 et plus"), QLatin1String("Round"));
ui->m_hdpi_round_policy_cb->addItem(tr("Toujours arrondi supérieur"), QLatin1String("Ceil"));
ui->m_hdpi_round_policy_cb->addItem(tr("Toujours arrondi inférieur"), QLatin1String("Floor"));
ui->m_hdpi_round_policy_cb->addItem(tr("Arrondi supérieur pour 0.75 et plus"), QLatin1String("RoundPreferFloor"));
ui->m_hdpi_round_policy_cb->addItem(tr("Pas d'arrondi"), QLatin1String("PassThrough"));
switch (QetSettings::hdpiScaleFactorRoundingPolicy()) {
case Qt::HighDpiScaleFactorRoundingPolicy::Round:
ui->m_hdpi_round_policy_cb->setCurrentIndex(0);
break;
case Qt::HighDpiScaleFactorRoundingPolicy::Ceil:
ui->m_hdpi_round_policy_cb->setCurrentIndex(1);
break;
case Qt::HighDpiScaleFactorRoundingPolicy::Floor:
ui->m_hdpi_round_policy_cb->setCurrentIndex(2);
break;
case Qt::HighDpiScaleFactorRoundingPolicy::RoundPreferFloor:
ui->m_hdpi_round_policy_cb->setCurrentIndex(3);
break;
default:
ui->m_hdpi_round_policy_cb->setCurrentIndex(4);
break;
}
#endif
ui->DiagramEditor_xGrid_sb->setValue(settings.value("diagrameditor/Xgrid", 10).toInt());
ui->DiagramEditor_yGrid_sb->setValue(settings.value("diagrameditor/Ygrid", 10).toInt());
ui->DiagramEditor_xKeyGrid_sb->setValue(settings.value("diagrameditor/key_Xgrid", 10).toInt());
@@ -149,6 +177,12 @@ void GeneralConfigurationPage::applyConf()
settings.setValue("border-columns_0",ui->m_border_0->isChecked());
settings.setValue("lang", ui->m_lang_cb->itemData(ui->m_lang_cb->currentIndex()).toString());
//hdpi
#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
QetSettings::setHdpiScaleFactorRoundingPolicy(ui->m_hdpi_round_policy_cb->currentData().toString());
QGuiApplication::setHighDpiScaleFactorRoundingPolicy(QetSettings::hdpiScaleFactorRoundingPolicy());
#endif
//ELEMENT EDITOR
settings.setValue("elementeditor/default-informations", ui->m_default_elements_info->toPlainText());
@@ -197,7 +231,7 @@ void GeneralConfigurationPage::applyConf()
settings.setValue("elements-collections/common-collection-path", "default");
}
if (path != settings.value("elements-collections/common-collection-path").toString()) {
QETApp::resetUserElementsDir();
QETApp::resetCollectionsPath();
}
path = settings.value("elements-collections/custom-collection-path").toString();
@@ -212,7 +246,7 @@ void GeneralConfigurationPage::applyConf()
settings.setValue("elements-collections/custom-collection-path", "default");
}
if (path != settings.value("elements-collections/custom-collection-path").toString()) {
QETApp::resetUserElementsDir();
QETApp::resetCollectionsPath();
}
path = settings.value("elements-collections/custom-tbt-path").toString();
@@ -227,7 +261,7 @@ void GeneralConfigurationPage::applyConf()
settings.setValue("elements-collections/custom-tbt-path", "default");
}
if (path != settings.value("elements-collections/custom-tbt-path").toString()) {
QETApp::resetUserElementsDir();
QETApp::resetCollectionsPath();
}
}
@@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>727</width>
<height>510</height>
<width>822</width>
<height>411</height>
</rect>
</property>
<property name="windowTitle">
@@ -17,7 +17,7 @@
<item row="0" column="0">
<widget class="QTabWidget" name="tabWidget">
<property name="currentIndex">
<number>5</number>
<number>0</number>
</property>
<widget class="QWidget" name="tab_3">
<attribute name="title">
@@ -73,6 +73,41 @@
</property>
</widget>
</item>
<item>
<widget class="Line" name="line_4">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<widget class="QWidget" name="m_hdpi_round_policy_widget" native="true">
<layout class="QHBoxLayout" name="horizontalLayout">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>Méthode de mise à l'echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="m_hdpi_round_policy_cb"/>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
+110
View File
@@ -0,0 +1,110 @@
/*
Copyright 2006-2021 The QElectroTech Team
This file is part of QElectroTech.
QElectroTech 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.
QElectroTech 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 QElectroTech. If not, see <http://www.gnu.org/licenses/>.
*/
#include "qetsettings.h"
#include <QSettings>
#include <QVariant>
namespace QetSettings
{
#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
/**
* @brief setHdpiScaleFactorRoundingPolicy
* Write the value of HdpiScaleFactorRoundingPolicy in
* QElectroTech settings
* the value is in form of a string.
* @a policy can be : Round, Ceil, Floor, RoundPreferFloor, PassThrough
* In case of wrong policy, PassThrough is use as defaukt value.
* The value is stored with key : hdpi_scale_factor_rounding_policy
* @sa Qt::HighDpiScaleFactorRoundingPolicy
* @param policy
*/
void setHdpiScaleFactorRoundingPolicy(const QString &policy_str)
{
auto policy = QString("PassThrough");
if (policy_str == QLatin1String("Round")) {
policy = "Round";
} else if (policy_str == QLatin1String("Ceil")) {
policy = "Ceil";
} else if (policy_str == QLatin1String("Floor")) {
policy = "Floor";
} else if (policy_str == QLatin1String("RoundPreferFloor")) {
policy = "RoundPreferFloor";
}
QSettings settings;
settings.setValue("hdpi_scale_factor_rounding_policy", policy);
}
/**
* @brief setHdpiScaleFactorRoundingPolicy
* Overload function
* @sa void setHdpiScaleFactorRoundingPolicy(const QString &policy_str)
* @param policy
*/
void setHdpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy policy)
{
QString policy_str;
switch (policy) {
case Qt::HighDpiScaleFactorRoundingPolicy::Round:
policy_str = "Round";
break;
case Qt::HighDpiScaleFactorRoundingPolicy::Ceil:
policy_str = "Ceil";
break;
case Qt::HighDpiScaleFactorRoundingPolicy::Floor:
policy_str = "Floor";
break;
case Qt::HighDpiScaleFactorRoundingPolicy::RoundPreferFloor:
policy_str = "RoundPreferFloor";
break;
default:
policy_str = "PassThrough";
break;
}
QSettings settings;
settings.setValue("hdpi_scale_factor_rounding_policy", policy_str);
}
/**
* @brief hdpiScaleFactorRoundingPolicy
* @param default_policy
* @return the hdpiScaleFactorRoundingPolicy value stored in current settings.
* @sa setHdpiScaleFactorRoundingPolicy
*/
Qt::HighDpiScaleFactorRoundingPolicy hdpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy default_policy)
{
QSettings settings;
auto value_ = settings.value("hdpi_scale_factor_rounding_policy");
if (value_ == QLatin1String("Round")) {
return Qt::HighDpiScaleFactorRoundingPolicy::Round;
} else if (value_ == QLatin1String("Ceil")) {
return Qt::HighDpiScaleFactorRoundingPolicy::Ceil;
} else if (value_ == QLatin1String("Floor")) {
return Qt::HighDpiScaleFactorRoundingPolicy::Floor;
} else if (value_ == QLatin1String("RoundPreferFloor")) {
return Qt::HighDpiScaleFactorRoundingPolicy::RoundPreferFloor;
} else if (value_ == QLatin1String("PassThrough")) {
return Qt::HighDpiScaleFactorRoundingPolicy::PassThrough;
} else {
return default_policy;
}
}
#endif
}
+39
View File
@@ -0,0 +1,39 @@
/*
Copyright 2006-2021 The QElectroTech Team
This file is part of QElectroTech.
QElectroTech 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.
QElectroTech 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 QElectroTech. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef QETSETTINGS_H
#define QETSETTINGS_H
#include <Qt>
/**
*Interface to use QSettings in QElectroTech
*Prefer use this namespace instead of directly QSettings
*It's notably usefull when some QSettings value are use in
*different part of QElectroTech source code
*/
namespace QetSettings
{
#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
void setHdpiScaleFactorRoundingPolicy(const QString &policy_str);
void setHdpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy policy);
Qt::HighDpiScaleFactorRoundingPolicy hdpiScaleFactorRoundingPolicy(
Qt::HighDpiScaleFactorRoundingPolicy default_policy = Qt::HighDpiScaleFactorRoundingPolicy::PassThrough);
#endif
}
#endif // QETSETTINGS_H