Commit aa3138df91396a01fb57e6a2c21d00d4bfa804ef

Authored by Perry Werneck
Committed by GitHub
2 parents ee06acb1 660690c7
Exists in master and in 1 other branch develop

Merge pull request #45 from PerryWerneck/develop

Updating
.github/workflows/codeql.yml
@@ -3,12 +3,10 @@ name: CodeQL @@ -3,12 +3,10 @@ name: CodeQL
3 on: 3 on:
4 push: 4 push:
5 branches: 5 branches:
6 - - master 6 + - develop
7 pull_request: 7 pull_request:
8 branches: 8 branches:
9 - master 9 - master
10 - schedule:  
11 - - cron: 48 7 * * 1  
12 jobs: 10 jobs:
13 analyze: 11 analyze:
14 name: Analyze 12 name: Analyze
.vscode/c_cpp_properties.json
@@ -20,7 +20,8 @@ @@ -20,7 +20,8 @@
20 "compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.23.28105/bin/Hostx64/x64/cl.exe", 20 "compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.23.28105/bin/Hostx64/x64/cl.exe",
21 "cStandard": "c11", 21 "cStandard": "c11",
22 "cppStandard": "c++17", 22 "cppStandard": "c++17",
23 - "intelliSenseMode": "msvc-x64" 23 + "intelliSenseMode": "msvc-x64",
  24 + "configurationProvider": "ms-vscode.makefile-tools"
24 } 25 }
25 ], 26 ],
26 "version": 4 27 "version": 4
@@ -288,7 +288,7 @@ install-application: \ @@ -288,7 +288,7 @@ install-application: \
288 install-icons 288 install-icons
289 289
290 @$(MKDIR) \ 290 @$(MKDIR) \
291 - $(DESTDIR)$(libdir)/$(PRODUCT_NAME)-plugins 291 + $(DESTDIR)@PLUGIN_DIR@
292 292
293 @$(INSTALL_DATA) \ 293 @$(INSTALL_DATA) \
294 $(srcdir)/ui/@OSNAME@.ui.xml \ 294 $(srcdir)/ui/@OSNAME@.ui.xml \
@@ -15,13 +15,12 @@ Created originally for Banco do Brasil, it's now an official Brazilian Governmen @@ -15,13 +15,12 @@ Created originally for Banco do Brasil, it's now an official Brazilian Governmen
15 15
16 ## Installation 16 ## Installation
17 17
18 -[<img src="https://cdn.jsdelivr.net/npm/simple-icons@3.9.0/icons/opensuse.svg" alt="OpenSUSE Linux" height="80px">](https://software.opensuse.org/package/pw3270)  
19 -[<img src="https://cdn.jsdelivr.net/npm/simple-icons@3.9.0/icons/linux.svg" alt="Linux distribution" height="80px">](https://software.opensuse.org/download.html?project=home%3APerryWerneck%3Apw3270&package=pw3270)  
20 -  
21 -### Linux (latest and unstable versions) 18 +### Linux
22 19
23 For the supported distributions get the install repositories and instructions from https://software.opensuse.org/download.html?project=home%3APerryWerneck%3Apw3270&package=pw3270 20 For the supported distributions get the install repositories and instructions from https://software.opensuse.org/download.html?project=home%3APerryWerneck%3Apw3270&package=pw3270
24 21
  22 +[<img src="https://flathub.org/assets/badges/flathub-badge-en.png" alt="Download from flathub" height="80px">](https://flathub.org/apps/details/br.app.pw3270.terminal)
  23 +
25 ### Windows 24 ### Windows
26 25
27 Updated windows installers are available on Dropbox, google drive and one drive. 26 Updated windows installers are available on Dropbox, google drive and one drive.
@@ -9,7 +9,7 @@ url=&quot;https://portal.softwarepublico.gov.br/social/pw3270/&quot; @@ -9,7 +9,7 @@ url=&quot;https://portal.softwarepublico.gov.br/social/pw3270/&quot;
9 arch=(i686 x86_64) 9 arch=(i686 x86_64)
10 license=(GPL) 10 license=(GPL)
11 depends=() 11 depends=()
12 -makedepends=(autoconf automake make openssl lib3270 gtk3 libv3270 python3 dbus dbus-glib imagemagick optipng) 12 +makedepends=(autoconf automake make openssl lib3270 gtk3 libv3270 python3 dbus dbus-glib imagemagick optipng gzip)
13 checkdepends=() 13 checkdepends=()
14 14
15 #groups=(gnome) 15 #groups=(gnome)
1 #!/bin/bash 1 #!/bin/bash
2 -# SPDX-License-Identifier: LGPL-3.0-or-later  
3 -#  
4 -# Copyright (C) 2008 Banco do Brasil S.A.  
5 -#  
6 -# This program is free software: you can redistribute it and/or modify  
7 -# it under the terms of the GNU Lesser General Public License as published  
8 -# by the Free Software Foundation, either version 3 of the License, or  
9 -# (at your option) any later version.  
10 -#  
11 -# This program is distributed in the hope that it will be useful,  
12 -# but WITHOUT ANY WARRANTY; without even the implied warranty of  
13 -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the  
14 -# GNU General Public License for more details.  
15 -#  
16 -# You should have received a copy of the GNU Lesser General Public License  
17 -# along with this program. If not, see <https://www.gnu.org/licenses/>.  
18 -#  
19 2
20 builddir=${PWD} 3 builddir=${PWD}
21 4
22 -test -n "$srcdir" || srcdir=`dirname "$0"`  
23 -test -n "$srcdir" || srcdir=. 5 +test -n "$srcdir" || srcdir=$(readlink -f $(dirname "$0"))
  6 +test -n "$srcdir" || srcdir=$(readlink -f .)
24 7
25 -cd "$srcdir" 8 +cd ${srcdir}
26 9
27 -mkdir -p scripts 10 +mkdir -p ./scripts
28 mkdir -p m4 11 mkdir -p m4
29 12
30 -LIBTOOLIZE=$(which libtoolize)  
31 -if [ -z ${LIBTOOLIZE} ]; then  
32 - LIBTOOLIZE=$(which glibtoolize)  
33 -fi  
34 -if [ -z ${LIBTOOLIZE} ]; then  
35 - echo "Can't find libtoolize"  
36 - exit -1  
37 -fi  
38 -  
39 -${LIBTOOLIZE} --force 13 +libtoolize --force
40 if test $? != 0 ; then 14 if test $? != 0 ; then
41 - echo "libtoolize failed."  
42 - exit -1 15 + echo "libtoolize failed."
  16 + exit -1
43 fi 17 fi
44 18
45 aclocal 19 aclocal
@@ -48,11 +22,11 @@ if test $? != 0 ; then @@ -48,11 +22,11 @@ if test $? != 0 ; then
48 exit -1 22 exit -1
49 fi 23 fi
50 24
51 -#autoheader --force  
52 -#if test $? != 0 ; then  
53 -# echo "autoheader failed."  
54 -# exit -1  
55 -#fi 25 +autoheader --force
  26 +if test $? != 0 ; then
  27 + echo "autoheader failed."
  28 + exit -1
  29 +fi
56 30
57 autoconf --force 31 autoconf --force
58 if test $? != 0 ; then 32 if test $? != 0 ; then
@@ -64,10 +38,9 @@ automake --add-missing 2&gt; /dev/null | true @@ -64,10 +38,9 @@ automake --add-missing 2&gt; /dev/null | true
64 38
65 autopoint 39 autopoint
66 40
67 -cd "${builddir}"  
68 -  
69 -test -n "$NOCONFIGURE" || "$srcdir/configure" --srcdir=${srcdir} $@ 41 +cd ${builddir}
70 42
  43 +test -n "$NOCONFIGURE" || "./configure" "$@"
71 44
72 45
73 46
branding/social-preview.svg 0 → 100644
@@ -0,0 +1,929 @@ @@ -0,0 +1,929 @@
  1 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2 +<svg
  3 + xmlns:dc="http://purl.org/dc/elements/1.1/"
  4 + xmlns:cc="http://creativecommons.org/ns#"
  5 + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  6 + xmlns:svg="http://www.w3.org/2000/svg"
  7 + xmlns="http://www.w3.org/2000/svg"
  8 + xmlns:xlink="http://www.w3.org/1999/xlink"
  9 + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  10 + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  11 + width="1280"
  12 + height="640"
  13 + viewBox="0 0 338.66666 169.33334"
  14 + version="1.1"
  15 + id="svg8"
  16 + inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
  17 + sodipodi:docname="social-preview.svg"
  18 + inkscape:export-filename="/home/perry/project/pw3270/pw3270/branding/social-preview.png"
  19 + inkscape:export-xdpi="96"
  20 + inkscape:export-ydpi="96">
  21 + <defs
  22 + id="defs2">
  23 + <radialGradient
  24 + inkscape:collect="always"
  25 + xlink:href="#linearGradient3687"
  26 + id="radialGradient2560"
  27 + gradientUnits="userSpaceOnUse"
  28 + gradientTransform="matrix(-1.2214651,1.3481449,-1.1114864,-1.0070438,1777.1401,13.255979)"
  29 + cx="593.03772"
  30 + cy="437.90591"
  31 + fx="593.03772"
  32 + fy="437.90591"
  33 + r="19.115074" />
  34 + <linearGradient
  35 + id="linearGradient3687">
  36 + <stop
  37 + style="stop-color:#ffffff;stop-opacity:1;"
  38 + offset="0"
  39 + id="stop3689" />
  40 + <stop
  41 + style="stop-color:#000000;stop-opacity:1;"
  42 + offset="1"
  43 + id="stop3691" />
  44 + </linearGradient>
  45 + </defs>
  46 + <sodipodi:namedview
  47 + id="base"
  48 + pagecolor="#ffffff"
  49 + bordercolor="#666666"
  50 + borderopacity="1.0"
  51 + inkscape:pageopacity="0.0"
  52 + inkscape:pageshadow="2"
  53 + inkscape:zoom="0.35"
  54 + inkscape:cx="714.64769"
  55 + inkscape:cy="518.92857"
  56 + inkscape:document-units="mm"
  57 + inkscape:current-layer="layer1"
  58 + inkscape:document-rotation="0"
  59 + showgrid="false"
  60 + units="px"
  61 + inkscape:window-width="1366"
  62 + inkscape:window-height="714"
  63 + inkscape:window-x="0"
  64 + inkscape:window-y="0"
  65 + inkscape:window-maximized="1"
  66 + inkscape:pagecheckerboard="true" />
  67 + <metadata
  68 + id="metadata5">
  69 + <rdf:RDF>
  70 + <cc:Work
  71 + rdf:about="">
  72 + <dc:format>image/svg+xml</dc:format>
  73 + <dc:type
  74 + rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  75 + <dc:title />
  76 + </cc:Work>
  77 + </rdf:RDF>
  78 + </metadata>
  79 + <g
  80 + inkscape:label="Layer 1"
  81 + inkscape:groupmode="layer"
  82 + id="layer1">
  83 + <g
  84 + id="g3348"
  85 + transform="matrix(1.3699023,0,0,1.3699023,-720.57098,-488.06097)"
  86 + inkscape:export-filename="/home/perry/Desktop/g3484.png"
  87 + inkscape:export-xdpi="750"
  88 + inkscape:export-ydpi="750">
  89 + <path
  90 + inkscape:export-ydpi="750"
  91 + inkscape:export-xdpi="750"
  92 + inkscape:export-filename="/home/perry/Desktop/path4684.png"
  93 + sodipodi:nodetypes="ccccc"
  94 + id="path3877"
  95 + d="m 571.75652,365.09989 c -12.28362,1.49404 -24.71615,1.60564 -36.92919,3.70417 1.15828,9.37275 0.97923,23.2044 1.63094,30.14689 11.55053,-1.50408 27.01785,-2.59907 38.36698,-5.35307 -0.036,-8.87303 -1.02762,-19.15 -3.06873,-28.49799 z"
  96 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#cccccc;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  97 + inkscape:connector-curvature="0" />
  98 + <path
  99 + inkscape:export-ydpi="750"
  100 + inkscape:export-xdpi="750"
  101 + inkscape:export-filename="/home/perry/Desktop/path4684.png"
  102 + sodipodi:nodetypes="cccccccccccccccc"
  103 + id="path3879"
  104 + d="m 558.70672,398.73456 c -3.79163,0.10309 -7.64598,0.11185 -11.30721,1.27926 -2.13143,0.66011 -4.04568,2.24121 -4.70985,4.42348 -0.0967,1.1177 0.76001,2.18842 1.46457,3.02352 2.25351,2.29719 5.65545,2.82771 8.73539,2.89271 4.42579,0.006 8.86831,-0.8458 12.96682,-2.52003 1.55025,-0.88162 3.33996,-2.06142 3.56963,-3.9936 -0.59735,-2.25901 -2.87075,-3.51224 -4.96561,-4.11636 -1.84964,-0.54894 -3.83129,-0.95601 -5.75374,-0.98898 z m 0.0446,1.40178 c 2.78739,0.0968 5.75567,0.21409 8.11548,1.83476 0.87991,0.58405 1.95351,1.77677 1.15706,2.83974 -0.76499,1.1501 -2.05182,1.80199 -3.22326,2.45978 -3.23561,1.57133 -6.96349,1.61384 -10.45172,1.06373 -9.12914,-0.40554 -4.60594,-6.64603 1.06647,-7.80087 1.09861,-0.25448 2.19774,-0.40573 3.33597,-0.39714 z"
  105 + style="fill:#b6b6b6;fill-opacity:1;fill-rule:evenodd;stroke:none"
  106 + inkscape:connector-curvature="0" />
  107 + <g
  108 + transform="matrix(0.8126522,0,0,1,135.51705,-68.411175)"
  109 + id="g3881">
  110 + <path
  111 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:50.9;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
  112 + d="m 496.23743,451.70467 c 37.88072,-3.53554 37.62819,-3.53554 37.62819,-3.53554"
  113 + id="path3883"
  114 + inkscape:connector-curvature="0" />
  115 + <path
  116 + style="font-style:normal;font-weight:bold;font-size:9.27299px;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Sans Bold';fill:#00ff00;fill-opacity:1;stroke:#00ff00;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0"
  117 + d="m 496.41233,442.38795 2.69056,-0.26631 c 0.80001,-0.0792 1.40822,0.0667 1.82464,0.43776 0.41931,0.36749 0.61951,0.93195 0.60062,1.69338 -0.019,0.76469 -0.24833,1.37492 -0.68806,1.83067 -0.43685,0.45224 -1.05527,0.71795 -1.85529,0.79713 l -1.06948,0.10586 -0.0627,2.52833 -1.62108,0.16046 0.18082,-7.28728 m 1.58729,1.20133 -0.0505,2.03536 0.89685,-0.0888 c 0.31439,-0.0311 0.55938,-0.14299 0.73498,-0.33567 0.17566,-0.19591 0.26753,-0.45656 0.27561,-0.78196 0.008,-0.3254 -0.0713,-0.56748 -0.23819,-0.72626 -0.16688,-0.15875 -0.4075,-0.22257 -0.7219,-0.19147 l -0.89684,0.0888 m 4.19384,-1.77354 1.5537,-0.15378 0.95492,5.18832 1.20932,-5.40254 1.56212,-0.15461 0.9465,5.18915 1.21774,-5.40337 1.54107,-0.15253 -1.66294,7.43397 -1.8695,0.18504 -1.00361,-5.42695 -1.2659,5.65159 -1.86949,0.18504 -1.31393,-7.13933 m 13.19263,2.04406 c 0.4207,0.085 0.73663,0.27442 0.94775,0.56837 0.214,0.29044 0.31498,0.67808 0.30296,1.16291 -0.0179,0.72239 -0.27018,1.29593 -0.75673,1.72062 -0.48649,0.42144 -1.18728,0.67745 -2.10238,0.76803 -0.32281,0.0319 -0.64626,0.0331 -0.97034,0.004 -0.32136,-0.0266 -0.63914,-0.0844 -0.95336,-0.17343 l 0.036,-1.44965 c 0.29879,0.14571 0.59584,0.2494 0.89113,0.31106 0.29817,0.0581 0.59182,0.0729 0.88095,0.0443 0.42948,-0.0425 0.76005,-0.16124 0.99169,-0.35622 0.23446,-0.19524 0.35568,-0.45393 0.36368,-0.77608 0.008,-0.3319 -0.10345,-0.57079 -0.33503,-0.71665 -0.22872,-0.1494 -0.57184,-0.20145 -1.02939,-0.15618 l -0.64842,0.0642 0.03,-1.21047 0.68211,-0.0675 c 0.40702,-0.0403 0.712,-0.1435 0.91493,-0.30966 0.20302,-0.16941 0.30828,-0.40542 0.31579,-0.70805 0.007,-0.27983 -0.0845,-0.48663 -0.27442,-0.62041 -0.18989,-0.13376 -0.46168,-0.18313 -0.81537,-0.14814 -0.26105,0.0258 -0.52577,0.0861 -0.79413,0.18086 -0.26837,0.0947 -0.53613,0.22186 -0.80331,0.38138 l 0.0341,-1.37642 c 0.32259,-0.1358 0.64172,-0.2453 0.95741,-0.32848 0.31568,-0.0832 0.6251,-0.13977 0.92826,-0.16979 0.81685,-0.0808 1.42351,0.0149 1.81998,0.28729 0.39934,0.26884 0.59127,0.71565 0.57577,1.3404 -0.0106,0.42629 -0.1161,0.78567 -0.31657,1.07816 -0.20039,0.28927 -0.49143,0.50796 -0.87312,0.6561 m 4.39998,2.10611 2.76635,-0.27381 -0.0343,1.3813 -4.56848,0.45219 0.0343,-1.38131 2.35302,-2.57489 c 0.21024,-0.23504 0.36703,-0.45992 0.47036,-0.67465 0.10334,-0.21472 0.15774,-0.43272 0.16324,-0.65399 0.008,-0.34167 -0.0844,-0.60676 -0.27848,-0.7953 -0.19133,-0.1888 -0.45121,-0.26694 -0.77963,-0.23445 -0.25263,0.025 -0.5307,0.11584 -0.8342,0.27247 -0.30343,0.15338 -0.62944,0.37068 -0.97804,0.65186 l 0.0397,-1.60096 c 0.36838,-0.17603 0.73172,-0.31748 1.08999,-0.42437 0.35835,-0.11012 0.70876,-0.18212 1.05122,-0.21603 0.75228,-0.0745 1.33139,0.0597 1.73731,0.40259 0.40872,0.34257 0.60456,0.85715 0.58752,1.54373 -0.01,0.397 -0.10747,0.77671 -0.29287,1.13912 -0.18533,0.35918 -0.56865,0.8548 -1.14996,1.48687 l -1.37709,1.49963 m 4.23502,-6.31064 4.7369,-0.46886 -0.0263,1.05916 -2.60509,6.47067 -1.57897,0.15629 2.46658,-6.13561 -3.02741,0.29965 0.0343,-1.3813 m 9.29515,2.70736 c 0.0226,-0.91111 -0.0359,-1.54479 -0.17544,-1.90102 -0.13669,-0.35974 -0.37906,-0.5224 -0.72714,-0.48796 -0.34807,0.0345 -0.60114,0.24616 -0.75919,0.63508 -0.15799,0.38568 -0.24828,1.03408 -0.27088,1.94519 -0.0229,0.92088 0.0354,1.56268 0.17484,1.92541 0.1394,0.36274 0.38314,0.52689 0.73122,0.49243 0.34526,-0.0342 0.59696,-0.24736 0.75511,-0.63954 0.15814,-0.39219 0.24863,-1.04872 0.27148,-1.96959 m 1.62071,-0.14581 c -0.03,1.20722 -0.27765,2.16172 -0.74308,2.86347 -0.46537,0.6985 -1.11069,1.0886 -1.93596,1.17029 -0.82807,0.082 -1.45856,-0.18186 -1.89146,-0.79146 -0.43282,-0.61284 -0.63425,-1.52288 -0.6043,-2.73011 0.03,-1.21048 0.27773,-2.16496 0.74309,-2.86347 0.46544,-0.70176 1.1122,-1.09361 1.94028,-1.17559 0.82527,-0.0817 1.45431,0.18391 1.88714,0.79676 0.43289,0.6096 0.63432,1.51963 0.60429,2.73011"
  118 + id="path3885"
  119 + inkscape:connector-curvature="0" />
  120 + <path
  121 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:50.9;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
  122 + d="m 498.4652,453.42295 c 37.88072,-3.53554 37.62819,-3.53554 37.62819,-3.53554"
  123 + id="path3887"
  124 + inkscape:connector-curvature="0" />
  125 + <path
  126 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:50.9;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
  127 + d="m 496.77866,455.87356 c 37.88072,-3.53554 37.62819,-3.53554 37.62819,-3.53554"
  128 + id="path3889"
  129 + inkscape:connector-curvature="0" />
  130 + <path
  131 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:50.9;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
  132 + d="m 499.54207,457.86404 c 37.88072,-3.53554 37.62819,-3.53554 37.62819,-3.53554"
  133 + id="path3891"
  134 + inkscape:connector-curvature="0" />
  135 + </g>
  136 + <path
  137 + inkscape:export-ydpi="750"
  138 + inkscape:export-xdpi="750"
  139 + inkscape:export-filename="/home/perry/Desktop/path4684.png"
  140 + sodipodi:nodetypes="ccccc"
  141 + id="path3893"
  142 + d="m 571.18683,366.21059 c -11.74072,1.38257 -23.62379,1.48585 -35.29705,3.42783 1.10709,8.67351 0.93595,21.47328 1.55887,27.89784 11.04002,-1.39187 25.82375,-2.40517 36.67128,-4.95371 -0.0344,-8.21108 -0.9822,-17.72136 -2.9331,-26.37196 z"
  143 + style="opacity:0.434043;fill:url(#radialGradient2560);fill-opacity:1;fill-rule:evenodd;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  144 + inkscape:connector-curvature="0" />
  145 + </g>
  146 + <g
  147 + aria-label="GTK Based 3270 terminal emulator"
  148 + id="text278"
  149 + style="font-weight:bold;font-size:11.2889px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';stroke-width:0.264583">
  150 + <path
  151 + d="m 91.751756,40.489492 q -0.71658,0.385851 -1.488282,0.578776 -0.76619,0.192926 -1.58199,0.192926 -1.852085,0 -2.932468,-1.146529 -1.080383,-1.152041 -1.080383,-3.119882 0,-1.989889 1.096919,-3.130906 1.102432,-1.141016 3.020663,-1.141016 0.738629,0 1.416625,0.15434 0.677995,0.15434 1.278821,0.457509 v 1.703257 q -0.622874,-0.391363 -1.234724,-0.584289 -0.611849,-0.192925 -1.229211,-0.192925 -1.141017,0 -1.758379,0.711068 -0.617361,0.705556 -0.617361,2.022962 0,1.306382 0.595313,2.01745 0.595313,0.711069 1.692232,0.711069 0.297657,0 0.551216,-0.03858 0.259072,-0.0441 0.457509,-0.132292 v -1.598526 h -1.163065 v -1.422137 h 2.976565 z"
  152 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  153 + id="path349" />
  154 + <path
  155 + d="m 92.347069,32.871689 h 6.824052 v 1.604038 h -2.45291 v 6.625614 h -1.912719 v -6.625614 h -2.458423 z"
  156 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  157 + id="path351" />
  158 + <path
  159 + d="m 100.1578,32.871689 h 1.91272 v 3.004126 l 2.75056,-3.004126 h 2.2214 l -3.57188,3.897096 3.93569,4.332556 h -2.39228 l -2.94349,-3.241149 v 3.241149 h -1.91272 z"
  160 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  161 + id="path353" />
  162 + <path
  163 + d="m 114.52799,36.057716 q 0.452,0 0.68351,-0.220486 0.23702,-0.220486 0.23702,-0.650435 0,-0.424436 -0.23702,-0.644922 -0.23151,-0.225999 -0.68351,-0.225999 h -1.05282 v 1.741842 z m 0.0661,3.59944 q 0.57878,0 0.86541,-0.270096 0.29214,-0.270096 0.29214,-0.815799 0,-0.53468 -0.29214,-0.799263 -0.28663,-0.270096 -0.86541,-0.270096 h -1.11897 v 2.155254 z m 1.77491,-2.960029 q 0.61737,0.198437 0.95361,0.733117 0.33624,0.534679 0.33624,1.311893 0,1.190627 -0.72761,1.774915 -0.72209,0.584289 -2.19935,0.584289 h -3.16949 v -8.229652 h 2.86632 q 1.54341,0 2.23243,0.518143 0.69453,0.518143 0.69453,1.659159 0,0.600826 -0.25356,1.025262 -0.24805,0.418924 -0.73312,0.622874 z"
  164 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  165 + id="path355" />
  166 + <path
  167 + d="m 121.71585,38.323213 q -0.55673,0 -0.83785,0.209462 -0.28112,0.209462 -0.28112,0.617362 0,0.374827 0.226,0.589801 0.226,0.209462 0.62838,0.209462 0.50161,0 0.84337,-0.396875 0.34175,-0.402388 0.34175,-1.003213 v -0.225999 z m 2.71198,-0.744141 v 3.522269 h -1.79145 v -0.915018 q -0.35829,0.56224 -0.80478,0.821312 -0.44648,0.253559 -1.08589,0.253559 -0.86541,0 -1.4056,-0.556728 -0.53468,-0.56224 -0.53468,-1.45521 0,-1.085895 0.67248,-1.593014 0.67249,-0.507118 2.11116,-0.507118 h 1.04731 v -0.154341 q 0,-0.468533 -0.33624,-0.683507 -0.33073,-0.220487 -1.03078,-0.220487 -0.57326,0 -1.06384,0.12678 -0.49058,0.12678 -0.91502,0.380339 v -1.504819 q 0.57326,-0.154341 1.14653,-0.231511 0.57877,-0.08268 1.15204,-0.08268 1.50482,0 2.17179,0.661459 0.66697,0.655946 0.66697,2.138717 z"
  168 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  169 + id="path357" />
  170 + <path
  171 + d="m 130.41403,35.120649 v 1.499307 q -0.56775,-0.264583 -1.10243,-0.396875 -0.52917,-0.132292 -0.9977,-0.132292 -0.50712,0 -0.75516,0.143316 -0.24254,0.137804 -0.24254,0.429949 0,0.237023 0.1819,0.363802 0.18742,0.12678 0.67249,0.187414 l 0.30868,0.04961 q 1.36701,0.192926 1.83554,0.633898 0.47405,0.440973 0.47405,1.383552 0,0.986676 -0.65595,1.482771 -0.65594,0.496094 -1.95681,0.496094 -0.55122,0 -1.14102,-0.09922 -0.58429,-0.09371 -1.20165,-0.286632 v -1.499307 q 0.52917,0.286632 1.0859,0.429948 0.56224,0.143316 1.1355,0.143316 0.51814,0 0.78273,-0.159852 0.26458,-0.159853 0.26458,-0.474046 0,-0.264584 -0.1819,-0.391363 -0.1819,-0.132292 -0.72209,-0.20395 l -0.3142,-0.0441 q -1.18511,-0.165365 -1.66467,-0.61185 -0.47404,-0.446485 -0.47404,-1.355991 0,-0.981164 0.60633,-1.45521 0.60634,-0.474045 1.8576,-0.474045 0.49058,0 1.03077,0.08268 0.5402,0.08268 1.17409,0.259071 z"
  172 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  173 + id="path359" />
  174 + <path
  175 + d="m 137.66804,37.997996 v 0.56224 h -4.15066 q 0.0606,0.694532 0.44649,1.041798 0.39136,0.347266 1.08589,0.347266 0.56224,0 1.14653,-0.181901 0.5898,-0.187413 1.20716,-0.56224 v 1.521355 q -0.62838,0.264584 -1.26228,0.396876 -0.62839,0.137804 -1.25677,0.137804 -1.51033,0 -2.34818,-0.848873 -0.83234,-0.854384 -0.83234,-2.392276 0,-1.510332 0.82131,-2.375741 0.82131,-0.865408 2.25999,-0.865408 1.31189,0 2.09462,0.876433 0.78824,0.876433 0.78824,2.342667 z m -1.82453,-0.655947 q 0,-0.56224 -0.29765,-0.903994 -0.29215,-0.347266 -0.77171,-0.347266 -0.51263,0 -0.83784,0.325218 -0.31971,0.319705 -0.40239,0.926042 z"
  176 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  177 + id="path361" />
  178 + <path
  179 + d="m 142.79434,35.831718 v -3.307295 h 1.78594 v 8.576918 h -1.78594 v -0.892969 q -0.36931,0.545703 -0.81028,0.799263 -0.44098,0.253559 -1.02526,0.253559 -1.02527,0 -1.68673,-0.903994 -0.65594,-0.909506 -0.65594,-2.337155 0,-1.427649 0.65594,-2.331643 0.66146,-0.909506 1.68673,-0.909506 0.57877,0 1.01974,0.259071 0.44649,0.253559 0.8158,0.793751 z m -1.17409,3.996315 q 0.57327,0 0.87093,-0.463022 0.30316,-0.463021 0.30316,-1.344966 0,-0.881946 -0.30316,-1.344967 -0.29766,-0.463021 -0.87093,-0.463021 -0.56224,0 -0.8654,0.463021 -0.29766,0.463021 -0.29766,1.344967 0,0.881945 0.29766,1.344966 0.30316,0.463022 0.8654,0.463022 z"
  180 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  181 + id="path363" />
  182 + <path
  183 + d="m 153.69739,36.664054 q 0.74414,0.214974 1.13551,0.749653 0.39136,0.529167 0.39136,1.350479 0,1.223699 -0.84336,1.86311 -0.84336,0.633898 -2.46393,0.633898 -0.56776,0 -1.14102,-0.104731 -0.57327,-0.09922 -1.13551,-0.303169 v -1.637111 q 0.53468,0.297657 1.06385,0.451997 0.52917,0.148828 1.0418,0.148828 0.76068,0 1.16306,-0.292144 0.40239,-0.292144 0.40239,-0.837848 0,-0.56224 -0.41341,-0.848873 -0.41341,-0.292144 -1.2237,-0.292144 h -0.76068 v -1.367015 h 0.80478 q 0.71658,0 1.06936,-0.248047 0.35277,-0.25356 0.35277,-0.76619 0,-0.474046 -0.34175,-0.733117 -0.34175,-0.259072 -0.97014,-0.259072 -0.46302,0 -0.93155,0.115755 -0.46854,0.115756 -0.93707,0.341754 v -1.554428 q 0.56775,-0.176389 1.11897,-0.264584 0.55672,-0.08819 1.0914,-0.08819 1.44419,0 2.16077,0.529167 0.71658,0.523655 0.71658,1.581989 0,0.722093 -0.34175,1.185114 -0.34176,0.457509 -1.00873,0.644923 z"
  184 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  185 + id="path365" />
  186 + <path
  187 + d="m 158.95599,39.5414 h 3.25769 v 1.559941 h -5.37987 V 39.5414 l 2.70096,-2.651348 q 0.3638,-0.363802 0.53468,-0.711068 0.17639,-0.347266 0.17639,-0.722093 0,-0.578777 -0.35278,-0.931555 -0.34727,-0.352778 -0.92604,-0.352778 -0.44649,0 -0.98117,0.214974 -0.52916,0.209462 -1.1355,0.628386 V 33.20793 q 0.64492,-0.237022 1.27331,-0.35829 0.6339,-0.126779 1.24023,-0.126779 1.32843,0 2.06155,0.650434 0.73863,0.650435 0.73863,1.8135 0,0.672484 -0.31419,1.256772 -0.30868,0.578777 -1.3119,1.554429 z"
  188 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  189 + id="path367" />
  190 + <path
  191 + d="m 163.77361,32.871689 h 5.58382 v 1.196138 l -2.88837,7.033514 h -1.86311 l 2.73403,-6.669711 h -3.56637 z"
  192 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  193 + id="path369" />
  194 + <path
  195 + d="m 174.83652,36.978247 q 0,-1.543405 -0.26458,-2.171791 -0.25908,-0.633898 -0.87093,-0.633898 -0.61736,0 -0.88194,0.633898 -0.25907,0.628386 -0.25907,2.171791 0,1.559941 0.25907,2.199351 0.26458,0.63941 0.88194,0.63941 0.60634,0 0.87093,-0.63941 0.26458,-0.63941 0.26458,-2.199351 z m 1.90721,0.01654 q 0,2.045011 -0.79376,3.158467 -0.79375,1.107944 -2.24896,1.107944 -1.46623,0 -2.25998,-1.107944 -0.79375,-1.113456 -0.79375,-3.158467 0,-2.050523 0.79375,-3.158467 0.79375,-1.113455 2.25998,-1.113455 1.45521,0 2.24896,1.113455 0.79376,1.107944 0.79376,3.158467 z"
  196 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  197 + id="path371" />
  198 + <path
  199 + d="m 183.55676,33.174857 v 1.752867 h 1.83003 v 1.411112 h -1.83003 v 2.618276 q 0,0.429948 0.14883,0.584288 0.15434,0.148829 0.61184,0.148829 h 0.91502 v 1.411112 h -1.52135 q -1.05282,0 -1.4938,-0.48507 -0.44097,-0.490582 -0.44097,-1.659159 v -2.618276 h -0.88195 v -1.411112 h 0.88195 v -1.752867 z"
  200 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  201 + id="path373" />
  202 + <path
  203 + d="m 192.01792,37.997996 v 0.56224 h -4.15066 q 0.0606,0.694532 0.44649,1.041798 0.39136,0.347266 1.08589,0.347266 0.56224,0 1.14653,-0.181901 0.5898,-0.187413 1.20716,-0.56224 v 1.521355 q -0.62838,0.264584 -1.26228,0.396876 -0.62839,0.137804 -1.25677,0.137804 -1.51033,0 -2.34818,-0.848873 -0.83234,-0.854384 -0.83234,-2.392276 0,-1.510332 0.82131,-2.375741 0.82132,-0.865408 2.25999,-0.865408 1.31189,0 2.09462,0.876433 0.78824,0.876433 0.78824,2.342667 z m -1.82453,-0.655947 q 0,-0.56224 -0.29765,-0.903994 -0.29215,-0.347266 -0.77171,-0.347266 -0.51263,0 -0.83784,0.325218 -0.31971,0.319705 -0.40239,0.926042 z"
  204 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  205 + id="path375" />
  206 + <path
  207 + d="m 197.49149,36.608932 q -0.23702,-0.121267 -0.46853,-0.176389 -0.226,-0.06063 -0.46302,-0.06063 -0.68351,0 -1.05283,0.490582 -0.36931,0.48507 -0.36931,1.394577 v 2.844273 h -1.77492 v -6.173617 h 1.77492 v 1.014237 q 0.34175,-0.606337 0.78273,-0.881945 0.44648,-0.28112 1.06935,-0.28112 0.0882,0 0.19293,0.01102 0.10473,0.0055 0.30317,0.03307 z"
  208 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  209 + id="path377" />
  210 + <path
  211 + d="m 203.52179,35.952985 q 0.33624,-0.573264 0.79926,-0.870921 0.46303,-0.303168 1.01975,-0.303168 0.95912,0 1.46073,0.655946 0.5016,0.655947 0.5016,1.907207 v 3.759292 h -1.78594 v -3.2191 q 0.006,-0.07166 0.006,-0.148829 0.006,-0.07717 0.006,-0.220486 0,-0.655947 -0.17639,-0.948091 -0.17088,-0.297657 -0.56224,-0.297657 -0.50161,0 -0.77722,0.463022 -0.2756,0.463021 -0.28663,1.339454 v 3.031687 h -1.78594 v -3.2191 q 0,-1.025262 -0.15985,-1.317406 -0.15985,-0.297657 -0.56775,-0.297657 -0.50712,0 -0.78824,0.468534 -0.27561,0.463021 -0.27561,1.32843 v 3.037199 h -1.78594 v -6.173617 h 1.78594 v 0.903994 q 0.32522,-0.523655 0.74965,-0.788239 0.42444,-0.264583 0.93707,-0.264583 0.57327,0 1.01424,0.30868 0.44648,0.308681 0.67248,0.865409 z"
  212 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  213 + id="path379" />
  214 + <path
  215 + d="m 208.95678,34.927724 h 1.77491 v 6.173617 h -1.77491 z m 0,-2.403301 h 1.77491 v 1.60955 h -1.77491 z"
  216 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  217 + id="path381" />
  218 + <path
  219 + d="m 218.01877,37.342049 v 3.759292 h -1.78594 v -0.611849 -2.265497 q 0,-0.799263 -0.0331,-1.102432 -0.0331,-0.303169 -0.11025,-0.446485 -0.10473,-0.192925 -0.28663,-0.297656 -0.17639,-0.110244 -0.40239,-0.110244 -0.55673,0 -0.87643,0.479558 -0.31419,0.474046 -0.31419,1.317406 v 3.037199 h -1.77492 v -6.173617 h 1.77492 v 0.903994 q 0.40238,-0.540192 0.85438,-0.793751 0.452,-0.259071 0.9977,-0.259071 0.95912,0 1.45521,0.655946 0.50161,0.655947 0.50161,1.907207 z"
  220 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  221 + id="path383" />
  222 + <path
  223 + d="m 222.1584,38.323213 q -0.55673,0 -0.83785,0.209462 -0.28112,0.209462 -0.28112,0.617362 0,0.374827 0.226,0.589801 0.22599,0.209462 0.62838,0.209462 0.50161,0 0.84336,-0.396875 0.34176,-0.402388 0.34176,-1.003213 v -0.225999 z m 2.71198,-0.744141 v 3.522269 h -1.79145 v -0.915018 q -0.35829,0.56224 -0.80478,0.821312 -0.44648,0.253559 -1.08589,0.253559 -0.86541,0 -1.4056,-0.556728 -0.53468,-0.56224 -0.53468,-1.45521 0,-1.085895 0.67248,-1.593014 0.67248,-0.507118 2.11116,-0.507118 h 1.04731 v -0.154341 q 0,-0.468533 -0.33625,-0.683507 -0.33073,-0.220487 -1.03077,-0.220487 -0.57326,0 -1.06385,0.12678 -0.49058,0.12678 -0.91501,0.380339 v -1.504819 q 0.57326,-0.154341 1.14652,-0.231511 0.57878,-0.08268 1.15205,-0.08268 1.50481,0 2.17179,0.661459 0.66697,0.655946 0.66697,2.138717 z"
  224 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  225 + id="path385" />
  226 + <path
  227 + d="m 226.51852,32.524423 h 1.77492 v 8.576918 h -1.77492 z"
  228 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  229 + id="path387" />
  230 + <path
  231 + d="m 239.07521,37.997996 v 0.56224 h -4.15065 q 0.0606,0.694532 0.44648,1.041798 0.39137,0.347266 1.0859,0.347266 0.56224,0 1.14653,-0.181901 0.5898,-0.187413 1.20716,-0.56224 v 1.521355 q -0.62839,0.264584 -1.26228,0.396876 -0.62839,0.137804 -1.25678,0.137804 -1.51033,0 -2.34818,-0.848873 -0.83233,-0.854384 -0.83233,-2.392276 0,-1.510332 0.82131,-2.375741 0.82131,-0.865408 2.25999,-0.865408 1.31189,0 2.09462,0.876433 0.78823,0.876433 0.78823,2.342667 z m -1.82452,-0.655947 q 0,-0.56224 -0.29766,-0.903994 -0.29214,-0.347266 -0.7717,-0.347266 -0.51263,0 -0.83785,0.325218 -0.3197,0.319705 -0.40238,0.926042 z"
  232 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  233 + id="path389" />
  234 + <path
  235 + d="m 245.56854,35.952985 q 0.33624,-0.573264 0.79926,-0.870921 0.46302,-0.303168 1.01975,-0.303168 0.95911,0 1.46072,0.655946 0.50161,0.655947 0.50161,1.907207 v 3.759292 h -1.78594 v -3.2191 q 0.006,-0.07166 0.006,-0.148829 0.006,-0.07717 0.006,-0.220486 0,-0.655947 -0.17639,-0.948091 -0.17087,-0.297657 -0.56224,-0.297657 -0.5016,0 -0.77721,0.463022 -0.27561,0.463021 -0.28663,1.339454 v 3.031687 h -1.78594 v -3.2191 q 0,-1.025262 -0.15986,-1.317406 -0.15985,-0.297657 -0.56775,-0.297657 -0.50712,0 -0.78824,0.468534 -0.2756,0.463021 -0.2756,1.32843 v 3.037199 h -1.78594 v -6.173617 h 1.78594 v 0.903994 q 0.32521,-0.523655 0.74965,-0.788239 0.42444,-0.264583 0.93707,-0.264583 0.57326,0 1.01423,0.30868 0.44649,0.308681 0.67249,0.865409 z"
  236 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  237 + id="path391" />
  238 + <path
  239 + d="m 250.94289,38.69804 v -3.770316 h 1.78594 v 0.617362 q 0,0.501606 -0.006,1.262284 -0.006,0.755166 -0.006,1.008725 0,0.744141 0.0331,1.074871 0.0386,0.325217 0.12127,0.474045 0.11024,0.192926 0.28663,0.297657 0.17639,0.104731 0.40239,0.104731 0.55672,0 0.87092,-0.474046 0.3197,-0.474045 0.3197,-1.317406 v -3.048223 h 1.77492 v 6.173617 h -1.77492 v -0.892969 q -0.40239,0.540191 -0.85438,0.799263 -0.44649,0.253559 -0.98668,0.253559 -0.95911,0 -1.46623,-0.655947 -0.50161,-0.655947 -0.50161,-1.907207 z"
  240 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  241 + id="path393" />
  242 + <path
  243 + d="m 258.23547,32.524423 h 1.77492 v 8.576918 h -1.77492 z"
  244 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  245 + id="path395" />
  246 + <path
  247 + d="m 264.20515,38.323213 q -0.55673,0 -0.83785,0.209462 -0.28112,0.209462 -0.28112,0.617362 0,0.374827 0.226,0.589801 0.226,0.209462 0.62838,0.209462 0.50161,0 0.84336,-0.396875 0.34176,-0.402388 0.34176,-1.003213 v -0.225999 z m 2.71198,-0.744141 v 3.522269 h -1.79145 v -0.915018 q -0.35829,0.56224 -0.80478,0.821312 -0.44648,0.253559 -1.08589,0.253559 -0.86541,0 -1.4056,-0.556728 -0.53468,-0.56224 -0.53468,-1.45521 0,-1.085895 0.67248,-1.593014 0.67249,-0.507118 2.11116,-0.507118 h 1.04731 v -0.154341 q 0,-0.468533 -0.33624,-0.683507 -0.33073,-0.220487 -1.03078,-0.220487 -0.57326,0 -1.06384,0.12678 -0.49059,0.12678 -0.91502,0.380339 v -1.504819 q 0.57326,-0.154341 1.14653,-0.231511 0.57877,-0.08268 1.15204,-0.08268 1.50482,0 2.17179,0.661459 0.66697,0.655946 0.66697,2.138717 z"
  248 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  249 + id="path397" />
  250 + <path
  251 + d="m 270.50554,33.174857 v 1.752867 h 1.83004 v 1.411112 h -1.83004 v 2.618276 q 0,0.429948 0.14883,0.584288 0.15434,0.148829 0.61185,0.148829 h 0.91502 v 1.411112 h -1.52136 q -1.05282,0 -1.49379,-0.48507 -0.44098,-0.490582 -0.44098,-1.659159 v -2.618276 h -0.88194 v -1.411112 h 0.88194 v -1.752867 z"
  252 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  253 + id="path399" />
  254 + <path
  255 + d="m 276.0618,36.190008 q -0.5898,0 -0.89848,0.474046 -0.30868,0.468533 -0.30868,1.355991 0,0.887457 0.30868,1.361503 0.30868,0.468533 0.89848,0.468533 0.58429,0 0.88746,-0.468533 0.30868,-0.474046 0.30868,-1.361503 0,-0.887458 -0.30868,-1.355991 -0.30317,-0.474046 -0.88746,-0.474046 z m 0,-1.411112 q 1.43867,0 2.24345,0.859896 0.80477,0.859897 0.80477,2.381253 0,1.521355 -0.80477,2.381252 -0.80478,0.859897 -2.24345,0.859897 -1.43316,0 -2.24896,-0.859897 -0.81029,-0.859897 -0.81029,-2.381252 0,-1.521356 0.81029,-2.381253 0.8158,-0.859896 2.24896,-0.859896 z"
  256 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  257 + id="path401" />
  258 + <path
  259 + d="m 284.52848,36.608932 q -0.23703,-0.121267 -0.46854,-0.176389 -0.22599,-0.06063 -0.46302,-0.06063 -0.6835,0 -1.05282,0.490582 -0.36931,0.48507 -0.36931,1.394577 v 2.844273 h -1.77492 v -6.173617 h 1.77492 v 1.014237 q 0.34175,-0.606337 0.78272,-0.881945 0.44649,-0.28112 1.06936,-0.28112 0.0882,0 0.19293,0.01102 0.10473,0.0055 0.30317,0.03307 z"
  260 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  261 + id="path403" />
  262 + </g>
  263 + <g
  264 + aria-label="PW3270"
  265 + id="text274"
  266 + style="font-weight:bold;font-size:25.4px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';stroke-width:0.264583">
  267 + <path
  268 + d="m 84.795416,10.918196 h 7.925098 q 3.534668,0 5.419824,1.575097 1.897562,1.562696 1.897562,4.464844 0,2.914551 -1.897562,4.489648 -1.885156,1.562696 -5.419824,1.562696 h -3.150196 v 6.424414 h -4.774902 z m 4.774902,3.460253 v 5.171778 h 2.6417 q 1.389062,0 2.145605,-0.669727 0.756543,-0.682129 0.756543,-1.922363 0,-1.240234 -0.756543,-1.909961 -0.756543,-0.669727 -2.145605,-0.669727 z"
  269 + style="font-size:25.4px;stroke-width:0.264583"
  270 + id="path336" />
  271 + <path
  272 + d="m 101.83624,10.918196 h 4.57646 l 3.19981,13.456542 3.175,-13.456542 h 4.60126 l 3.175,13.456542 3.19981,-13.456542 h 4.53926 l -4.36563,18.516699 h -5.50664 l -3.36103,-14.07666 -3.32383,14.07666 h -5.50664 z"
  273 + style="font-size:25.4px;stroke-width:0.264583"
  274 + id="path338" />
  275 + <path
  276 + d="m 140.92842,19.451008 q 1.87276,0.483691 2.84014,1.686719 0.97979,1.190625 0.97979,3.038574 0,2.75332 -2.1084,4.191992 -2.1084,1.42627 -6.15157,1.42627 -1.42626,0 -2.86494,-0.235645 -1.42627,-0.223242 -2.82773,-0.682129 v -3.683496 q 1.33945,0.669727 2.6541,1.016992 1.32705,0.334864 2.60449,0.334864 1.89756,0 2.90215,-0.657325 1.01699,-0.657324 1.01699,-1.885156 0,-1.265039 -1.04179,-1.909961 -1.0294,-0.657324 -3.05098,-0.657324 h -1.90996 v -3.075781 h 2.00918 q 1.79834,0 2.67891,-0.558106 0.88056,-0.570508 0.88056,-1.723925 0,-1.066602 -0.85576,-1.649512 -0.85576,-0.58291 -2.41846,-0.58291 -1.15342,0 -2.33164,0.260449 -1.17822,0.260449 -2.34404,0.768945 v -3.497461 q 1.41387,-0.396875 2.80293,-0.595312 1.38906,-0.198438 2.72851,-0.198438 3.60909,0 5.39502,1.190625 1.79834,1.178223 1.79834,3.559473 0,1.624707 -0.85576,2.666504 -0.85576,1.029394 -2.53008,1.451074 z"
  277 + style="font-size:25.4px;stroke-width:0.264583"
  278 + id="path340" />
  279 + <path
  280 + d="m 154.08731,25.925031 h 8.14834 v 3.509864 h -13.45654 v -3.509864 l 6.75927,-5.965527 q 0.90538,-0.818555 1.33946,-1.599902 0.43408,-0.781348 0.43408,-1.624707 0,-1.302246 -0.88057,-2.095996 -0.86816,-0.79375 -2.31923,-0.79375 -1.11622,0 -2.44327,0.483691 -1.32705,0.471289 -2.84013,1.413867 v -4.067968 q 1.6123,-0.533301 3.1874,-0.806153 1.5751,-0.285254 3.08818,-0.285254 3.32383,0 5.15938,1.463477 1.84795,1.463476 1.84795,4.080371 0,1.513086 -0.78135,2.827734 -0.78135,1.302246 -3.28662,3.497461 z"
  281 + style="font-size:25.4px;stroke-width:0.264583"
  282 + id="path342" />
  283 + <path
  284 + d="m 166.14239,10.918196 h 13.95264 v 2.691308 l -7.21817,15.825391 h -4.65088 l 6.83369,-15.006836 h -8.91728 z"
  285 + style="font-size:25.4px;stroke-width:0.264583"
  286 + id="path344" />
  287 + <path
  288 + d="m 193.79962,20.157942 q 0,-3.472657 -0.65733,-4.886524 -0.64492,-1.426269 -2.18281,-1.426269 -1.53789,0 -2.19522,1.426269 -0.65732,1.413867 -0.65732,4.886524 0,3.509863 0.65732,4.948535 0.65733,1.438672 2.19522,1.438672 1.52549,0 2.18281,-1.438672 0.65733,-1.438672 0.65733,-4.948535 z m 4.7749,0.03721 q 0,4.601269 -1.98438,7.106542 -1.98437,2.492872 -5.63066,2.492872 -3.65869,0 -5.64307,-2.492872 -1.98437,-2.505273 -1.98437,-7.106542 0,-4.613672 1.98437,-7.106543 1.98438,-2.505274 5.64307,-2.505274 3.64629,0 5.63066,2.505274 1.98438,2.492871 1.98438,7.106543 z"
  289 + style="font-size:25.4px;stroke-width:0.264583"
  290 + id="path346" />
  291 + </g>
  292 + <g
  293 + aria-label="A modern, GTK-based, completely free tn3270 emulator. "
  294 + id="text282"
  295 + style="font-weight:bold;font-size:7.76111px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';stroke-width:0.264583"
  296 + transform="translate(0,7.4083337)">
  297 + <path
  298 + d="M 88.275988,54.893727 H 86.222023 L 85.896117,55.9245 h -1.318782 l 1.887223,-5.65788 h 1.565106 l 1.887223,5.65788 h -1.322572 z m -1.728059,-1.04972 h 1.394574 l -0.693497,-2.251025 z"
  299 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  300 + id="path406" />
  301 + <path
  302 + d="m 96.50322,52.385009 q 0.231166,-0.394119 0.549493,-0.598758 0.318326,-0.208428 0.701077,-0.208428 0.659391,0 1.004245,0.450963 0.344854,0.450963 0.344854,1.311203 V 55.9245 h -1.227832 v -2.213129 q 0.0038,-0.04926 0.0038,-0.10232 0.0038,-0.05305 0.0038,-0.151584 0,-0.450963 -0.121267,-0.651812 -0.117478,-0.204639 -0.38654,-0.204639 -0.344854,0 -0.534334,0.318327 -0.18948,0.318327 -0.19706,0.920874 V 55.9245 h -1.227831 v -2.213129 q 0,-0.704867 -0.109899,-0.905716 -0.109898,-0.204639 -0.390329,-0.204639 -0.348644,0 -0.541914,0.322117 -0.18948,0.318327 -0.18948,0.913294 V 55.9245 H 92.95615 v -4.244357 h 1.227832 v 0.621495 q 0.223587,-0.360013 0.515386,-0.541914 0.2918,-0.181901 0.644233,-0.181901 0.394119,0 0.697287,0.212218 0.306958,0.212218 0.462332,0.594968 z"
  303 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  304 + id="path408" />
  305 + <path
  306 + d="m 102.05499,52.547962 q -0.40549,0 -0.61771,0.325906 -0.21221,0.322116 -0.21221,0.932243 0,0.610126 0.21221,0.936032 0.21222,0.322116 0.61771,0.322116 0.4017,0 0.61013,-0.322116 0.21221,-0.325906 0.21221,-0.936032 0,-0.610127 -0.21221,-0.932243 -0.20843,-0.325906 -0.61013,-0.325906 z m 0,-0.970139 q 0.98909,0 1.54237,0.591179 0.55328,0.591178 0.55328,1.637109 0,1.04593 -0.55328,1.637109 -0.55328,0.591178 -1.54237,0.591178 -0.9853,0 -1.54616,-0.591178 -0.55707,-0.591179 -0.55707,-1.637109 0,-1.045931 0.55707,-1.637109 0.56086,-0.591179 1.54616,-0.591179 z"
  307 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  308 + id="path410" />
  309 + <path
  310 + d="m 107.63708,52.301638 v -2.273763 h 1.22783 V 55.9245 h -1.22783 v -0.613916 q -0.25391,0.37517 -0.55707,0.549492 -0.30317,0.174322 -0.70487,0.174322 -0.70487,0 -1.15962,-0.621495 -0.45096,-0.625285 -0.45096,-1.606792 0,-0.981508 0.45096,-1.603003 0.45475,-0.625285 1.15962,-0.625285 0.39791,0 0.70108,0.178112 0.30695,0.174321 0.56086,0.545703 z m -0.80719,2.747463 q 0.39412,0 0.59876,-0.318327 0.20843,-0.318327 0.20843,-0.924663 0,-0.606337 -0.20843,-0.924664 -0.20464,-0.318327 -0.59876,-0.318327 -0.38654,0 -0.59497,0.318327 -0.20464,0.318327 -0.20464,0.924664 0,0.606336 0.20464,0.924663 0.20843,0.318327 0.59497,0.318327 z"
  311 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  312 + id="path412" />
  313 + <path
  314 + d="m 113.84824,53.790952 v 0.38654 h -2.85357 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78824,-0.125057 0.40548,-0.128846 0.82992,-0.386539 v 1.04593 q -0.43202,0.181901 -0.86782,0.272852 -0.43202,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55374,-0.594968 0.90192,0 1.44005,0.602547 0.54191,0.602547 0.54191,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20464,-0.621495 -0.20085,-0.238745 -0.53054,-0.238745 -0.35244,0 -0.57602,0.223587 -0.2198,0.219797 -0.27664,0.636653 z"
  315 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  316 + id="path414" />
  317 + <path
  318 + d="m 117.61132,52.835972 q -0.16296,-0.08337 -0.32212,-0.121267 -0.15537,-0.04169 -0.31833,-0.04169 -0.46991,0 -0.72381,0.337275 -0.2539,0.333485 -0.2539,0.95877 v 1.95544 h -1.22026 v -4.244357 h 1.22026 v 0.697287 q 0.23495,-0.416857 0.53812,-0.606337 0.30696,-0.19327 0.73518,-0.19327 0.0606,0 0.13264,0.0076 0.072,0.0038 0.20843,0.02274 z"
  319 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  320 + id="path416" />
  321 + <path
  322 + d="M 122.05652,53.339989 V 55.9245 h -1.22783 v -0.420647 -1.557527 q 0,-0.549493 -0.0227,-0.757921 -0.0227,-0.208428 -0.0758,-0.306958 -0.072,-0.132636 -0.19706,-0.204638 -0.12127,-0.07579 -0.27664,-0.07579 -0.38275,0 -0.60255,0.329696 -0.216,0.325906 -0.216,0.905715 v 2.08807 h -1.22026 v -4.244357 h 1.22026 v 0.621495 q 0.27664,-0.371382 0.58738,-0.545703 0.31075,-0.178112 0.68592,-0.178112 0.65939,0 1.00046,0.450963 0.34485,0.450963 0.34485,1.311203 z"
  323 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  324 + id="path418" />
  325 + <path
  326 + d="m 123.31467,54.457923 h 1.22783 v 1.155829 l -0.84129,1.413522 h -0.7276 l 0.34106,-1.413522 z"
  327 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  328 + id="path420" />
  329 + <path
  330 + d="m 132.90237,55.503853 q -0.49265,0.265273 -1.02319,0.397909 -0.52676,0.132636 -1.08762,0.132636 -1.27331,0 -2.01607,-0.788238 -0.74276,-0.792027 -0.74276,-2.144916 0,-1.368047 0.75413,-2.152495 0.75792,-0.784448 2.0767,-0.784448 0.50781,0 0.97393,0.106109 0.46612,0.106109 0.87919,0.314537 v 1.170988 q -0.42822,-0.269062 -0.84887,-0.401698 -0.42065,-0.132637 -0.84508,-0.132637 -0.78445,0 -1.20889,0.488859 -0.42443,0.48507 -0.42443,1.390785 0,0.898136 0.40928,1.386995 0.40927,0.488859 1.1634,0.488859 0.20464,0 0.37896,-0.02653 0.17812,-0.03032 0.31454,-0.09095 v -1.098986 h -0.79961 v -0.977718 h 2.04639 z"
  331 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  332 + id="path422" />
  333 + <path
  334 + d="m 133.31165,50.26662 h 4.69153 v 1.102775 H 136.3168 V 55.9245 h -1.31499 v -4.555105 h -1.69016 z"
  335 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  336 + id="path424" />
  337 + <path
  338 + d="m 138.68152,50.26662 h 1.31499 v 2.065335 l 1.89101,-2.065335 h 1.52721 l -2.45566,2.67925 2.70578,2.97863 h -1.64469 l -2.02365,-2.228288 V 55.9245 h -1.31499 z"
  339 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  340 + id="path426" />
  341 + <path
  342 + d="m 143.15704,53.13914 h 2.14113 v 1.102775 h -2.14113 z"
  343 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  344 + id="path428" />
  345 + <path
  346 + d="m 148.29574,55.049101 q 0.39412,0 0.59876,-0.318327 0.20843,-0.318327 0.20843,-0.924663 0,-0.606337 -0.20843,-0.924664 -0.20464,-0.318327 -0.59876,-0.318327 -0.39032,0 -0.60254,0.322117 -0.20843,0.318327 -0.20843,0.920874 0,0.602547 0.20843,0.924663 0.21222,0.318327 0.60254,0.318327 z m -0.81097,-2.747463 q 0.2539,-0.371382 0.56086,-0.545703 0.30696,-0.178112 0.70487,-0.178112 0.70486,0 1.15962,0.625285 0.45475,0.621495 0.45475,1.603003 0,0.981507 -0.45475,1.606792 -0.45476,0.621495 -1.15962,0.621495 -0.39791,0 -0.70487,-0.174322 -0.30696,-0.178111 -0.56086,-0.549492 V 55.9245 h -1.22025 v -5.896625 h 1.22025 z"
  347 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  348 + id="path430" />
  349 + <path
  350 + d="m 152.9759,54.014539 q -0.38275,0 -0.57602,0.144005 -0.19327,0.144005 -0.19327,0.424436 0,0.257693 0.15538,0.405487 0.15537,0.144005 0.43201,0.144005 0.34486,0 0.57981,-0.272851 0.23496,-0.276641 0.23496,-0.689708 v -0.155374 z m 1.86449,-0.511597 V 55.9245 h -1.23162 v -0.629075 q -0.24633,0.38654 -0.55329,0.564651 -0.30695,0.174322 -0.74655,0.174322 -0.59496,0 -0.96635,-0.38275 -0.36759,-0.38654 -0.36759,-1.000456 0,-0.746552 0.46233,-1.095195 0.46234,-0.348644 1.45142,-0.348644 h 0.72003 v -0.106109 q 0,-0.322116 -0.23117,-0.469911 -0.22737,-0.151584 -0.70865,-0.151584 -0.39412,0 -0.7314,0.08716 -0.33727,0.08716 -0.62907,0.261483 V 51.79383 q 0.39412,-0.106109 0.78824,-0.159164 0.3979,-0.05684 0.79202,-0.05684 1.03456,0 1.49311,0.454753 0.45854,0.450963 0.45854,1.470366 z"
  351 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  352 + id="path432" />
  353 + <path
  354 + d="m 158.9559,51.812779 v 1.030772 q -0.39033,-0.181901 -0.75792,-0.272851 -0.3638,-0.09095 -0.68592,-0.09095 -0.34864,0 -0.51917,0.09853 -0.16675,0.09474 -0.16675,0.295589 0,0.162953 0.12506,0.250114 0.12885,0.08716 0.46233,0.128846 l 0.21222,0.03411 q 0.93982,0.132636 1.26194,0.435804 0.3259,0.303169 0.3259,0.951191 0,0.678339 -0.45096,1.019404 -0.45096,0.341064 -1.34531,0.341064 -0.37896,0 -0.78445,-0.06821 -0.4017,-0.06442 -0.82613,-0.197059 V 54.73836 q 0.3638,0.19706 0.74655,0.295589 0.38654,0.09853 0.78066,0.09853 0.35622,0 0.53812,-0.109898 0.1819,-0.109899 0.1819,-0.325906 0,-0.181901 -0.12505,-0.269062 -0.12506,-0.09095 -0.49644,-0.140216 l -0.21601,-0.03032 q -0.81476,-0.113689 -1.14446,-0.420647 -0.3259,-0.306957 -0.3259,-0.932242 0,-0.67455 0.41685,-1.000456 0.41686,-0.325906 1.2771,-0.325906 0.33727,0 0.70865,0.05684 0.37139,0.05684 0.80719,0.178112 z"
  355 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  356 + id="path434" />
  357 + <path
  358 + d="m 163.94302,53.790952 v 0.38654 h -2.85357 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78824,-0.125057 0.40548,-0.128846 0.82992,-0.386539 v 1.04593 q -0.43202,0.181901 -0.86782,0.272852 -0.43202,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55374,-0.594968 0.90192,0 1.44005,0.602547 0.54191,0.602547 0.54191,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20464,-0.621495 -0.20085,-0.238745 -0.53054,-0.238745 -0.35244,0 -0.57602,0.223587 -0.2198,0.219797 -0.27664,0.636653 z"
  359 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  360 + id="path436" />
  361 + <path
  362 + d="m 167.46735,52.301638 v -2.273763 h 1.22784 V 55.9245 h -1.22784 v -0.613916 q -0.2539,0.37517 -0.55707,0.549492 -0.30317,0.174322 -0.70486,0.174322 -0.70487,0 -1.15962,-0.621495 -0.45097,-0.625285 -0.45097,-1.606792 0,-0.981508 0.45097,-1.603003 0.45475,-0.625285 1.15962,-0.625285 0.3979,0 0.70107,0.178112 0.30696,0.174321 0.56086,0.545703 z m -0.80718,2.747463 q 0.39412,0 0.59876,-0.318327 0.20842,-0.318327 0.20842,-0.924663 0,-0.606337 -0.20842,-0.924664 -0.20464,-0.318327 -0.59876,-0.318327 -0.38654,0 -0.59497,0.318327 -0.20464,0.318327 -0.20464,0.924664 0,0.606336 0.20464,0.924663 0.20843,0.318327 0.59497,0.318327 z"
  363 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  364 + id="path438" />
  365 + <path
  366 + d="m 169.99123,54.457923 h 1.22783 v 1.155829 l -0.84129,1.413522 h -0.7276 l 0.34106,-1.413522 z"
  367 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  368 + id="path440" />
  369 + <path
  370 + d="m 178.03277,51.812779 v 1.106564 q -0.24633,-0.18948 -0.50023,-0.280431 -0.25011,-0.09095 -0.51918,-0.09095 -0.51159,0 -0.79581,0.333485 -0.28422,0.329696 -0.28422,0.924664 0,0.594968 0.28422,0.928453 0.28422,0.329695 0.79581,0.329695 0.28801,0 0.54571,-0.09474 0.25769,-0.09474 0.4737,-0.280431 v 1.110355 q -0.28422,0.117477 -0.57981,0.174321 -0.29559,0.06063 -0.59118,0.06063 -1.03456,0 -1.61816,-0.587389 -0.5836,-0.591178 -0.5836,-1.640898 0,-1.049721 0.5836,-1.637109 0.5836,-0.591179 1.61816,-0.591179 0.29938,0 0.59118,0.06063 0.2918,0.05684 0.57981,0.174322 z"
  371 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  372 + id="path442" />
  373 + <path
  374 + d="m 180.9015,52.547962 q -0.40548,0 -0.6177,0.325906 -0.21222,0.322116 -0.21222,0.932243 0,0.610126 0.21222,0.936032 0.21222,0.322116 0.6177,0.322116 0.4017,0 0.61013,-0.322116 0.21222,-0.325906 0.21222,-0.936032 0,-0.610127 -0.21222,-0.932243 -0.20843,-0.325906 -0.61013,-0.325906 z m 0,-0.970139 q 0.98909,0 1.54237,0.591179 0.55328,0.591178 0.55328,1.637109 0,1.04593 -0.55328,1.637109 -0.55328,0.591178 -1.54237,0.591178 -0.98529,0 -1.54616,-0.591178 -0.55707,-0.591179 -0.55707,-1.637109 0,-1.045931 0.55707,-1.637109 0.56087,-0.591179 1.54616,-0.591179 z"
  375 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  376 + id="path444" />
  377 + <path
  378 + d="m 187.42341,52.385009 q 0.23117,-0.394119 0.54949,-0.598758 0.31833,-0.208428 0.70108,-0.208428 0.65939,0 1.00425,0.450963 0.34485,0.450963 0.34485,1.311203 V 55.9245 h -1.22783 v -2.213129 q 0.004,-0.04926 0.004,-0.10232 0.004,-0.05305 0.004,-0.151584 0,-0.450963 -0.12127,-0.651812 -0.11748,-0.204639 -0.38654,-0.204639 -0.34485,0 -0.53433,0.318327 -0.18948,0.318327 -0.19706,0.920874 V 55.9245 h -1.22784 v -2.213129 q 0,-0.704867 -0.10989,-0.905716 -0.1099,-0.204639 -0.39033,-0.204639 -0.34865,0 -0.54192,0.322117 -0.18948,0.318327 -0.18948,0.913294 V 55.9245 h -1.22783 v -4.244357 h 1.22783 v 0.621495 q 0.22359,-0.360013 0.51539,-0.541914 0.2918,-0.181901 0.64423,-0.181901 0.39412,0 0.69729,0.212218 0.30696,0.212218 0.46233,0.594968 z"
  379 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  380 + id="path446" />
  381 + <path
  382 + d="m 192.38021,55.310584 v 2.228287 h -1.22025 v -5.858728 h 1.22025 v 0.621495 q 0.25391,-0.371382 0.56086,-0.545703 0.30696,-0.178112 0.70487,-0.178112 0.70487,0 1.15962,0.625285 0.45475,0.621495 0.45475,1.603003 0,0.981507 -0.45475,1.606792 -0.45475,0.621495 -1.15962,0.621495 -0.39791,0 -0.70487,-0.174322 -0.30695,-0.178111 -0.56086,-0.549492 z m 0.81098,-2.747464 q -0.39033,0 -0.60255,0.322117 -0.20843,0.318327 -0.20843,0.920874 0,0.602547 0.20843,0.924663 0.21222,0.318327 0.60255,0.318327 0.39412,0 0.59875,-0.318327 0.20843,-0.318327 0.20843,-0.924663 0,-0.606337 -0.20843,-0.924664 -0.20463,-0.318327 -0.59875,-0.318327 z"
  383 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  384 + id="path448" />
  385 + <path
  386 + d="m 196.15845,50.027875 h 1.22025 V 55.9245 h -1.22025 z"
  387 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  388 + id="path450" />
  389 + <path
  390 + d="m 202.36203,53.790952 v 0.38654 h -2.85357 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78824,-0.125057 0.40549,-0.128846 0.82992,-0.386539 v 1.04593 q -0.43201,0.181901 -0.86782,0.272852 -0.43201,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55374,-0.594968 0.90193,0 1.44005,0.602547 0.54191,0.602547 0.54191,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20463,-0.621495 -0.20085,-0.238745 -0.53055,-0.238745 -0.35243,0 -0.57602,0.223587 -0.2198,0.219797 -0.27664,0.636653 z"
  391 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  392 + id="path452" />
  393 + <path
  394 + d="m 204.62064,50.475048 v 1.205095 h 1.25815 v 0.970138 h -1.25815 v 1.800062 q 0,0.29559 0.10232,0.401698 0.10611,0.10232 0.42065,0.10232 h 0.62907 V 55.9245 h -1.04593 q -0.72382,0 -1.02698,-0.333486 -0.30317,-0.337274 -0.30317,-1.140671 v -1.800062 h -0.60634 v -0.970138 h 0.60634 v -1.205095 z"
  395 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  396 + id="path454" />
  397 + <path
  398 + d="m 210.43768,53.790952 v 0.38654 h -2.85357 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78823,-0.125057 0.40549,-0.128846 0.82993,-0.386539 v 1.04593 q -0.43202,0.181901 -0.86782,0.272852 -0.43202,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55374,-0.594968 0.90192,0 1.44005,0.602547 0.54191,0.602547 0.54191,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20464,-0.621495 -0.20085,-0.238745 -0.53054,-0.238745 -0.35244,0 -0.57602,0.223587 -0.2198,0.219797 -0.27664,0.636653 z"
  399 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  400 + id="path456" />
  401 + <path
  402 + d="m 211.36234,50.027875 h 1.22026 V 55.9245 h -1.22026 z"
  403 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  404 + id="path458" />
  405 + <path
  406 + d="m 213.24957,51.680143 h 1.22404 l 1.02699,2.880099 0.8716,-2.880099 h 1.22026 l -1.6068,4.646055 q -0.24253,0.708656 -0.56465,0.989086 -0.32211,0.284221 -0.84887,0.284221 h -0.70865 v -0.890557 h 0.38275 q 0.31074,0 0.45096,-0.109899 0.144,-0.109898 0.22359,-0.394119 l 0.0341,-0.117477 z"
  407 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  408 + id="path460" />
  409 + <path
  410 + d="m 223.24655,50.027875 v 0.890557 H 222.572 q -0.25769,0 -0.36001,0.106109 -0.10232,0.102319 -0.10232,0.360012 v 0.29559 h 1.04214 v 0.970138 h -1.04214 V 55.9245 h -1.22404 v -3.274219 h -0.60634 v -0.970138 h 0.60634 v -0.29559 q 0,-0.693497 0.34864,-1.023193 0.34864,-0.333485 1.08004,-0.333485 z"
  411 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  412 + id="path462" />
  413 + <path
  414 + d="m 226.60792,52.835972 q -0.16296,-0.08337 -0.32212,-0.121267 -0.15537,-0.04169 -0.31833,-0.04169 -0.46991,0 -0.72381,0.337275 -0.25391,0.333485 -0.25391,0.95877 v 1.95544 h -1.22025 v -4.244357 h 1.22025 v 0.697287 q 0.23496,-0.416857 0.53813,-0.606337 0.30696,-0.19327 0.73518,-0.19327 0.0606,0 0.13264,0.0076 0.072,0.0038 0.20843,0.02274 z"
  415 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  416 + id="path464" />
  417 + <path
  418 + d="m 231.02659,53.790952 v 0.38654 h -2.85357 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78824,-0.125057 0.40549,-0.128846 0.82992,-0.386539 v 1.04593 q -0.43201,0.181901 -0.86782,0.272852 -0.43201,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55374,-0.594968 0.90193,0 1.44005,0.602547 0.54191,0.602547 0.54191,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20464,-0.621495 -0.20084,-0.238745 -0.53054,-0.238745 -0.35243,0 -0.57602,0.223587 -0.2198,0.219797 -0.27664,0.636653 z"
  419 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  420 + id="path466" />
  421 + <path
  422 + d="m 235.76361,53.790952 v 0.38654 h -2.85358 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78824,-0.125057 0.40549,-0.128846 0.82993,-0.386539 v 1.04593 q -0.43202,0.181901 -0.86782,0.272852 -0.43202,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55373,-0.594968 0.90193,0 1.44005,0.602547 0.54192,0.602547 0.54192,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20464,-0.621495 -0.20085,-0.238745 -0.53055,-0.238745 -0.35243,0 -0.57602,0.223587 -0.21979,0.219797 -0.27664,0.636653 z"
  423 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  424 + id="path468" />
  425 + <path
  426 + d="m 240.45134,50.475048 v 1.205095 h 1.25815 v 0.970138 h -1.25815 v 1.800062 q 0,0.29559 0.10232,0.401698 0.10611,0.10232 0.42065,0.10232 h 0.62907 V 55.9245 h -1.04593 q -0.72381,0 -1.02698,-0.333486 -0.30317,-0.337274 -0.30317,-1.140671 v -1.800062 h -0.60634 v -0.970138 h 0.60634 v -1.205095 z"
  427 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  428 + id="path470" />
  429 + <path
  430 + d="M 246.29491,53.339989 V 55.9245 h -1.22783 v -0.420647 -1.557527 q 0,-0.549493 -0.0227,-0.757921 -0.0227,-0.208428 -0.0758,-0.306958 -0.072,-0.132636 -0.19706,-0.204638 -0.12127,-0.07579 -0.27664,-0.07579 -0.38275,0 -0.60255,0.329696 -0.21601,0.325906 -0.21601,0.905715 v 2.08807 h -1.22025 v -4.244357 h 1.22025 v 0.621495 q 0.27664,-0.371382 0.58739,-0.545703 0.31075,-0.178112 0.68592,-0.178112 0.65939,0 1.00046,0.450963 0.34485,0.450963 0.34485,1.311203 z"
  431 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  432 + id="path472" />
  433 + <path
  434 + d="m 250.09589,52.873868 q 0.5116,0.147795 0.78066,0.515386 0.26906,0.363802 0.26906,0.928453 0,0.841292 -0.57981,1.280887 -0.57981,0.435804 -1.69395,0.435804 -0.39033,0 -0.78445,-0.072 -0.39412,-0.06821 -0.78066,-0.208429 v -1.125512 q 0.36759,0.204638 0.7314,0.310747 0.3638,0.10232 0.71623,0.10232 0.52297,0 0.79961,-0.200849 0.27664,-0.200849 0.27664,-0.57602 0,-0.38654 -0.28422,-0.583599 -0.28422,-0.200849 -0.84129,-0.200849 h -0.52297 v -0.939822 h 0.55328 q 0.49265,0 0.73519,-0.170532 0.24253,-0.174322 0.24253,-0.526755 0,-0.325906 -0.23495,-0.504018 -0.23496,-0.178111 -0.66697,-0.178111 -0.31833,0 -0.64045,0.07958 -0.32211,0.07958 -0.64423,0.234956 v -1.068669 q 0.39033,-0.121267 0.76929,-0.181901 0.38275,-0.06063 0.75034,-0.06063 0.99288,0 1.48553,0.363802 0.49265,0.360012 0.49265,1.087616 0,0.496438 -0.23496,0.814765 -0.23496,0.314537 -0.6935,0.443384 z"
  435 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  436 + id="path474" />
  437 + <path
  438 + d="m 253.71118,54.852041 h 2.23965 V 55.9245 h -3.69865 v -1.072459 l 1.85691,-1.822799 q 0.25011,-0.250114 0.36759,-0.488859 0.12127,-0.238745 0.12127,-0.496438 0,-0.397909 -0.24254,-0.640444 -0.23874,-0.242534 -0.63665,-0.242534 -0.30696,0 -0.67455,0.147794 -0.3638,0.144005 -0.78066,0.432015 v -1.24299 q 0.44338,-0.162953 0.8754,-0.246324 0.4358,-0.08716 0.85266,-0.08716 0.91329,0 1.41731,0.447173 0.50781,0.447173 0.50781,1.24678 0,0.462332 -0.21601,0.86403 -0.21222,0.397908 -0.90193,1.068668 z"
  439 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  440 + id="path476" />
  441 + <path
  442 + d="m 257.02328,50.26662 h 3.83887 v 0.822344 L 258.8764,55.9245 h -1.28089 l 1.87964,-4.585422 h -2.45187 z"
  443 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  444 + id="path478" />
  445 + <path
  446 + d="m 264.62902,53.089875 q 0,-1.061089 -0.1819,-1.493104 -0.17811,-0.435804 -0.59876,-0.435804 -0.42443,0 -0.60633,0.435804 -0.17812,0.432015 -0.17812,1.493104 0,1.072458 0.17812,1.512053 0.1819,0.439594 0.60633,0.439594 0.41686,0 0.59876,-0.439594 0.1819,-0.439595 0.1819,-1.512053 z m 1.3112,0.01137 q 0,1.405943 -0.5457,2.171444 -0.5457,0.76171 -1.54616,0.76171 -1.00803,0 -1.55374,-0.76171 -0.5457,-0.765501 -0.5457,-2.171444 0,-1.409733 0.5457,-2.171443 0.54571,-0.7655 1.55374,-0.7655 1.00046,0 1.54616,0.7655 0.5457,0.76171 0.5457,2.171443 z"
  447 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  448 + id="path480" />
  449 + <path
  450 + d="m 273.10258,53.790952 v 0.38654 h -2.85357 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78824,-0.125057 0.40548,-0.128846 0.82992,-0.386539 v 1.04593 q -0.43201,0.181901 -0.86782,0.272852 -0.43201,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55374,-0.594968 0.90192,0 1.44005,0.602547 0.54191,0.602547 0.54191,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20464,-0.621495 -0.20085,-0.238745 -0.53054,-0.238745 -0.35243,0 -0.57602,0.223587 -0.2198,0.219797 -0.27664,0.636653 z"
  451 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  452 + id="path482" />
  453 + <path
  454 + d="m 277.56673,52.385009 q 0.23116,-0.394119 0.54949,-0.598758 0.31833,-0.208428 0.70108,-0.208428 0.65939,0 1.00424,0.450963 0.34486,0.450963 0.34486,1.311203 V 55.9245 h -1.22783 v -2.213129 q 0.004,-0.04926 0.004,-0.10232 0.004,-0.05305 0.004,-0.151584 0,-0.450963 -0.12127,-0.651812 -0.11748,-0.204639 -0.38654,-0.204639 -0.34486,0 -0.53434,0.318327 -0.18948,0.318327 -0.19706,0.920874 V 55.9245 h -1.22783 v -2.213129 q 0,-0.704867 -0.1099,-0.905716 -0.10989,-0.204639 -0.39033,-0.204639 -0.34864,0 -0.54191,0.322117 -0.18948,0.318327 -0.18948,0.913294 V 55.9245 h -1.22783 v -4.244357 h 1.22783 v 0.621495 q 0.22359,-0.360013 0.51539,-0.541914 0.2918,-0.181901 0.64423,-0.181901 0.39412,0 0.69729,0.212218 0.30696,0.212218 0.46233,0.594968 z"
  455 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  456 + id="path484" />
  457 + <path
  458 + d="m 281.2616,54.272232 v -2.592089 h 1.22783 v 0.424435 q 0,0.344854 -0.004,0.86782 -0.004,0.519175 -0.004,0.693497 0,0.511597 0.0227,0.738973 0.0265,0.223587 0.0834,0.325906 0.0758,0.132636 0.19706,0.204639 0.12127,0.072 0.27664,0.072 0.38275,0 0.59876,-0.325906 0.2198,-0.325906 0.2198,-0.905715 v -2.095651 h 1.22025 V 55.9245 h -1.22025 v -0.613916 q -0.27664,0.371381 -0.58739,0.549492 -0.30696,0.174322 -0.67834,0.174322 -0.65939,0 -1.00804,-0.450963 -0.34485,-0.450963 -0.34485,-1.311203 z"
  459 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  460 + id="path486" />
  461 + <path
  462 + d="m 286.27524,50.027875 h 1.22025 V 55.9245 h -1.22025 z"
  463 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  464 + id="path488" />
  465 + <path
  466 + d="m 290.37939,54.014539 q -0.38275,0 -0.57602,0.144005 -0.19327,0.144005 -0.19327,0.424436 0,0.257693 0.15538,0.405487 0.15537,0.144005 0.43201,0.144005 0.34485,0 0.57981,-0.272851 0.23496,-0.276641 0.23496,-0.689708 v -0.155374 z m 1.86449,-0.511597 V 55.9245 h -1.23162 v -0.629075 q -0.24633,0.38654 -0.55329,0.564651 -0.30695,0.174322 -0.74655,0.174322 -0.59497,0 -0.96635,-0.38275 -0.36759,-0.38654 -0.36759,-1.000456 0,-0.746552 0.46233,-1.095195 0.46233,-0.348644 1.45142,-0.348644 h 0.72003 v -0.106109 q 0,-0.322116 -0.23117,-0.469911 -0.22738,-0.151584 -0.70866,-0.151584 -0.39412,0 -0.73139,0.08716 -0.33727,0.08716 -0.62907,0.261483 V 51.79383 q 0.39411,-0.106109 0.78823,-0.159164 0.39791,-0.05684 0.79203,-0.05684 1.03456,0 1.4931,0.454753 0.45855,0.450963 0.45855,1.470366 z"
  467 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  468 + id="path490" />
  469 + <path
  470 + d="m 294.7109,50.475048 v 1.205095 h 1.25814 v 0.970138 h -1.25814 v 1.800062 q 0,0.29559 0.10231,0.401698 0.10611,0.10232 0.42065,0.10232 h 0.62908 V 55.9245 H 294.817 q -0.72381,0 -1.02698,-0.333486 -0.30317,-0.337274 -0.30317,-1.140671 v -1.800062 h -0.60633 v -0.970138 h 0.60633 v -1.205095 z"
  471 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  472 + id="path492" />
  473 + <path
  474 + d="m 298.53083,52.547962 q -0.40549,0 -0.61771,0.325906 -0.21221,0.322116 -0.21221,0.932243 0,0.610126 0.21221,0.936032 0.21222,0.322116 0.61771,0.322116 0.4017,0 0.61013,-0.322116 0.21221,-0.325906 0.21221,-0.936032 0,-0.610127 -0.21221,-0.932243 -0.20843,-0.325906 -0.61013,-0.325906 z m 0,-0.970139 q 0.98909,0 1.54237,0.591179 0.55328,0.591178 0.55328,1.637109 0,1.04593 -0.55328,1.637109 -0.55328,0.591178 -1.54237,0.591178 -0.9853,0 -1.54616,-0.591178 -0.55707,-0.591179 -0.55707,-1.637109 0,-1.045931 0.55707,-1.637109 0.56086,-0.591179 1.54616,-0.591179 z"
  475 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  476 + id="path494" />
  477 + <path
  478 + d="m 304.35166,52.835972 q -0.16295,-0.08337 -0.32212,-0.121267 -0.15537,-0.04169 -0.31832,-0.04169 -0.46991,0 -0.72382,0.337275 -0.2539,0.333485 -0.2539,0.95877 v 1.95544 h -1.22025 v -4.244357 h 1.22025 v 0.697287 q 0.23495,-0.416857 0.53812,-0.606337 0.30696,-0.19327 0.73519,-0.19327 0.0606,0 0.13263,0.0076 0.072,0.0038 0.20843,0.02274 z"
  479 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  480 + id="path496" />
  481 + <path
  482 + d="m 303.97648,54.457923 h 1.22784 V 55.9245 h -1.22784 z"
  483 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
  484 + id="path498" />
  485 + </g>
  486 + <g
  487 + aria-label="Created originally for Banco do Brasil, it's now an official Brazilian Government Public Software project, and is used worldwide."
  488 + id="text282-8"
  489 + style="font-weight:bold;font-size:8.46667px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';stroke-width:0.264583"
  490 + transform="translate(0,6.879167)">
  491 + <path
  492 + d="m 89.706737,62.104419 v 0.880567 q -0.42168,-0.392741 -0.901237,-0.587045 -0.475424,-0.194303 -1.012859,-0.194303 -1.058334,0 -1.620573,0.649056 -0.56224,0.644922 -0.56224,1.868621 0,1.219564 0.56224,1.86862 0.562239,0.644922 1.620573,0.644922 0.537435,0 1.012859,-0.194303 0.479557,-0.194303 0.901237,-0.587045 v 0.872299 q -0.438216,0.297656 -0.930176,0.446485 -0.487826,0.148828 -1.033529,0.148828 -1.401466,0 -2.207618,-0.855762 -0.806153,-0.859896 -0.806153,-2.344044 0,-1.488282 0.806153,-2.344044 0.806152,-0.859896 2.207618,-0.859896 0.553971,0 1.041797,0.148828 0.49196,0.144694 0.921908,0.438216 z"
  493 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  494 + id="path501" />
  495 + <path
  496 + d="m 93.64655,63.882089 q -0.128158,-0.07441 -0.28112,-0.107487 -0.148829,-0.03721 -0.33073,-0.03721 -0.644922,0 -0.992188,0.42168 -0.343131,0.417546 -0.343131,1.203028 v 2.439128 h -0.764812 v -4.63021 h 0.764812 v 0.719336 q 0.239779,-0.421679 0.624251,-0.624251 0.384473,-0.206706 0.934311,-0.206706 0.07855,0 0.173632,0.0124 0.09509,0.0083 0.21084,0.02894 z"
  497 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  498 + id="path503" />
  499 + <path
  500 + d="m 98.218882,65.295957 v 0.37207 H 94.72142 q 0.04961,0.785482 0.471289,1.198894 0.425814,0.409278 1.182357,0.409278 0.438216,0 0.847494,-0.107487 0.413411,-0.107487 0.818555,-0.322461 v 0.719336 q -0.409278,0.173633 -0.839226,0.264583 -0.429948,0.09095 -0.872298,0.09095 -1.107943,0 -1.757,-0.644922 -0.644922,-0.644923 -0.644922,-1.744597 0,-1.136882 0.611849,-1.802475 0.615984,-0.669727 1.657781,-0.669727 0.93431,0 1.47588,0.603581 0.545703,0.599447 0.545703,1.632976 z m -0.760678,-0.223242 q -0.0083,-0.624252 -0.351399,-0.996322 -0.338998,-0.372071 -0.901238,-0.372071 -0.636654,0 -1.021126,0.359668 -0.380339,0.359668 -0.438217,1.012859 z"
  501 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  502 + id="path505" />
  503 + <path
  504 + d="m 101.57165,65.473724 q -0.92191,0 -1.27744,0.21084 -0.355536,0.21084 -0.355536,0.719336 0,0.405143 0.264586,0.644922 0.26872,0.235645 0.7276,0.235645 0.63252,0 1.01286,-0.446485 0.38447,-0.450618 0.38447,-1.194759 v -0.169499 z m 1.51722,-0.314193 v 2.6417 h -0.76068 v -0.702799 q -0.26045,0.421679 -0.64905,0.624251 -0.38861,0.198438 -0.95085,0.198438 -0.71107,0 -1.132748,-0.396875 -0.417545,-0.40101 -0.417545,-1.070737 0,-0.781347 0.520898,-1.178223 0.525035,-0.396875 1.562695,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34726,-0.810287 -0.34313,-0.289388 -0.96739,-0.289388 -0.39687,0 -0.77308,0.09509 -0.3762,0.09508 -0.723466,0.285254 v -0.7028 q 0.417546,-0.16123 0.810286,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50069,0.520899 0.49609,0.520898 0.49609,1.579232 z"
  505 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  506 + id="path507" />
  507 + <path
  508 + d="m 105.40811,61.856372 v 1.314649 h 1.56683 V 63.7622 h -1.56683 v 2.513542 q 0,0.566374 0.15296,0.727605 0.1571,0.16123 0.63252,0.16123 h 0.78135 v 0.636654 h -0.78135 q -0.88056,0 -1.21543,-0.326595 -0.33486,-0.330729 -0.33486,-1.198894 V 63.7622 h -0.55811 v -0.591179 h 0.55811 v -1.314649 z"
  509 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  510 + id="path509" />
  511 + <path
  512 + d="m 111.93588,65.295957 v 0.37207 h -3.49746 q 0.0496,0.785482 0.47129,1.198894 0.42581,0.409278 1.18235,0.409278 0.43822,0 0.8475,-0.107487 0.41341,-0.107487 0.81855,-0.322461 v 0.719336 q -0.40928,0.173633 -0.83922,0.264583 -0.42995,0.09095 -0.8723,0.09095 -1.10795,0 -1.757,-0.644922 -0.64492,-0.644923 -0.64492,-1.744597 0,-1.136882 0.61185,-1.802475 0.61598,-0.669727 1.65778,-0.669727 0.93431,0 1.47588,0.603581 0.5457,0.599447 0.5457,1.632976 z m -0.76068,-0.223242 q -0.008,-0.624252 -0.3514,-0.996322 -0.339,-0.372071 -0.90124,-0.372071 -0.63665,0 -1.02112,0.359668 -0.38034,0.359668 -0.43822,1.012859 z"
  513 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  514 + id="path511" />
  515 + <path
  516 + d="m 116.23123,63.873821 v -2.505274 h 0.76067 v 6.432684 h -0.76067 V 67.1067 q -0.23978,0.413411 -0.60772,0.615983 -0.3638,0.198438 -0.87643,0.198438 -0.83923,0 -1.36839,-0.669727 -0.52504,-0.669727 -0.52504,-1.761134 0,-1.091406 0.52504,-1.761133 0.52916,-0.669727 1.36839,-0.669727 0.51263,0 0.87643,0.202572 0.36794,0.198437 0.60772,0.611849 z m -2.5921,1.616439 q 0,0.839226 0.34314,1.318783 0.34726,0.475424 0.95084,0.475424 0.60358,0 0.95085,-0.475424 0.34727,-0.479557 0.34727,-1.318783 0,-0.839225 -0.34727,-1.314649 -0.34727,-0.479557 -0.95085,-0.479557 -0.60358,0 -0.95084,0.479557 -0.34314,0.475424 -0.34314,1.314649 z"
  517 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  518 + id="path513" />
  519 + <path
  520 + d="m 123.04425,63.704322 q -0.61185,0 -0.96738,0.479558 -0.35554,0.475423 -0.35554,1.30638 0,0.830958 0.3514,1.310515 0.35554,0.475424 0.97152,0.475424 0.60772,0 0.96325,-0.479558 0.35553,-0.479557 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302246 -0.35553,-0.483692 -0.96325,-0.483692 z m 0,-0.644922 q 0.99219,0 1.55856,0.644922 0.56638,0.644922 0.56638,1.785938 0,1.136882 -0.56638,1.785939 -0.56637,0.644922 -1.55856,0.644922 -0.99632,0 -1.5627,-0.644922 -0.56223,-0.649057 -0.56223,-1.785939 0,-1.141016 0.56223,-1.785938 0.56638,-0.644922 1.5627,-0.644922 z"
  521 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  522 + id="path515" />
  523 + <path
  524 + d="m 129.11313,63.882089 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64492,0 -0.99219,0.42168 -0.34313,0.417546 -0.34313,1.203028 v 2.439128 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.421679 0.62425,-0.624251 0.38448,-0.206706 0.93431,-0.206706 0.0785,0 0.17364,0.0124 0.0951,0.0083 0.21084,0.02894 z"
  525 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  526 + id="path517" />
  527 + <path
  528 + d="m 129.91102,63.171021 h 0.76067 v 4.63021 h -0.76067 z m 0,-1.802474 h 0.76067 v 0.963249 h -0.76067 z"
  529 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  530 + id="path519" />
  531 + <path
  532 + d="m 135.31017,65.432383 q 0,-0.826823 -0.34313,-1.281576 -0.339,-0.454753 -0.95498,-0.454753 -0.61185,0 -0.95498,0.454753 -0.339,0.454753 -0.339,1.281576 0,0.822689 0.339,1.277442 0.34313,0.454752 0.95498,0.454752 0.61598,0 0.95498,-0.454752 0.34313,-0.454753 0.34313,-1.277442 z m 0.76068,1.794206 q 0,1.182357 -0.52503,1.757 -0.52504,0.578776 -1.60818,0.578776 -0.40101,0 -0.75654,-0.06201 -0.35553,-0.05788 -0.6904,-0.181901 v -0.740007 q 0.33487,0.181901 0.66146,0.268718 0.3266,0.08682 0.66559,0.08682 0.74828,0 1.12035,-0.392741 0.37207,-0.388607 0.37207,-1.178223 V 66.98681 q -0.23564,0.409278 -0.60358,0.61185 -0.36794,0.202571 -0.88057,0.202571 -0.85162,0 -1.37252,-0.649056 -0.5209,-0.649056 -0.5209,-1.719792 0,-1.07487 0.5209,-1.723927 0.5209,-0.649056 1.37252,-0.649056 0.51263,0 0.88057,0.202572 0.36794,0.202571 0.60358,0.611849 v -0.7028 h 0.76068 z"
  533 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  534 + id="path521" />
  535 + <path
  536 + d="m 137.63768,63.171021 h 0.76068 v 4.63021 h -0.76068 z m 0,-1.802474 h 0.76068 v 0.963249 h -0.76068 z"
  537 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  538 + id="path523" />
  539 + <path
  540 + d="m 143.83885,65.006569 v 2.794662 h -0.76067 v -2.769857 q 0,-0.657325 -0.25632,-0.98392 -0.25631,-0.326595 -0.76894,-0.326595 -0.61599,0 -0.97152,0.392741 -0.35553,0.392741 -0.35553,1.070736 v 2.616895 h -0.76482 v -4.63021 h 0.76482 v 0.719336 q 0.27285,-0.417545 0.64078,-0.624251 0.37207,-0.206706 0.85577,-0.206706 0.79788,0 1.20716,0.496094 0.40927,0.49196 0.40927,1.451075 z"
  541 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  542 + id="path525" />
  543 + <path
  544 + d="m 147.46034,65.473724 q -0.92191,0 -1.27744,0.21084 -0.35554,0.21084 -0.35554,0.719336 0,0.405143 0.26459,0.644922 0.26871,0.235645 0.7276,0.235645 0.63252,0 1.01286,-0.446485 0.38447,-0.450618 0.38447,-1.194759 v -0.169499 z m 1.51722,-0.314193 v 2.6417 h -0.76068 v -0.702799 q -0.26045,0.421679 -0.64905,0.624251 -0.38861,0.198438 -0.95085,0.198438 -0.71107,0 -1.13275,-0.396875 -0.41754,-0.40101 -0.41754,-1.070737 0,-0.781347 0.52089,-1.178223 0.52504,-0.396875 1.5627,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34726,-0.810287 -0.34314,-0.289388 -0.96739,-0.289388 -0.39687,0 -0.77308,0.09509 -0.3762,0.09508 -0.72347,0.285254 v -0.7028 q 0.41755,-0.16123 0.81029,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50069,0.520899 0.49609,0.520898 0.49609,1.579232 z"
  545 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  546 + id="path527" />
  547 + <path
  548 + d="m 150.54439,61.368547 h 0.76068 v 6.432684 h -0.76068 z"
  549 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  550 + id="path529" />
  551 + <path
  552 + d="m 152.8967,61.368547 h 0.76068 v 6.432684 h -0.76068 z"
  553 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  554 + id="path531" />
  555 + <path
  556 + d="m 157.17552,68.231179 q -0.32246,0.826824 -0.62839,1.079005 -0.30592,0.252181 -0.81855,0.252181 h -0.60772 v -0.636654 h 0.44649 q 0.31419,0 0.48782,-0.148828 0.17363,-0.148828 0.38447,-0.7028 l 0.13643,-0.347266 -1.87276,-4.555796 h 0.80616 l 1.44694,3.621486 1.44694,-3.621486 h 0.80615 z"
  557 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  558 + id="path533" />
  559 + <path
  560 + d="m 165.29492,61.368547 v 0.632519 h -0.7276 q -0.40928,0 -0.57051,0.165365 -0.1571,0.165365 -0.1571,0.595313 v 0.409277 h 1.25264 V 63.7622 h -1.25264 v 4.039031 H 163.0749 V 63.7622 h -0.7276 v -0.591179 h 0.7276 V 62.84856 q 0,-0.77308 0.35967,-1.124479 0.35967,-0.355534 1.14101,-0.355534 z"
  561 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  562 + id="path535" />
  563 + <path
  564 + d="m 167.72578,63.704322 q -0.61185,0 -0.96738,0.479558 -0.35554,0.475423 -0.35554,1.30638 0,0.830958 0.3514,1.310515 0.35554,0.475424 0.97152,0.475424 0.60772,0 0.96325,-0.479558 0.35553,-0.479557 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302246 -0.35553,-0.483692 -0.96325,-0.483692 z m 0,-0.644922 q 0.99219,0 1.55856,0.644922 0.56638,0.644922 0.56638,1.785938 0,1.136882 -0.56638,1.785939 -0.56637,0.644922 -1.55856,0.644922 -0.99632,0 -1.5627,-0.644922 -0.56223,-0.649057 -0.56223,-1.785939 0,-1.141016 0.56223,-1.785938 0.56638,-0.644922 1.5627,-0.644922 z"
  565 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  566 + id="path537" />
  567 + <path
  568 + d="m 173.79466,63.882089 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64492,0 -0.99219,0.42168 -0.34313,0.417546 -0.34313,1.203028 v 2.439128 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.421679 0.62425,-0.624251 0.38448,-0.206706 0.93431,-0.206706 0.0786,0 0.17364,0.0124 0.0951,0.0083 0.21084,0.02894 z"
  569 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  570 + id="path539" />
  571 + <path
  572 + d="m 178.15202,64.853607 v 2.261361 h 1.33945 q 0.67386,0 0.99632,-0.276986 0.3266,-0.28112 0.3266,-0.855762 0,-0.578776 -0.3266,-0.851628 -0.32246,-0.276985 -0.99632,-0.276985 z m 0,-2.538348 v 1.860352 h 1.2361 q 0.61185,0 0.9095,-0.227376 0.3018,-0.23151 0.3018,-0.7028 0,-0.467155 -0.3018,-0.698665 -0.29765,-0.231511 -0.9095,-0.231511 z m -0.83509,-0.686263 h 2.1332 q 0.95498,0 1.47175,0.396875 0.51676,0.396875 0.51676,1.128614 0,0.566374 -0.26458,0.901237 -0.26459,0.334863 -0.77722,0.417546 0.61599,0.132292 0.95498,0.553971 0.34314,0.417546 0.34314,1.045932 0,0.826823 -0.56224,1.277442 -0.56224,0.450618 -1.59991,0.450618 h -2.21588 z"
  573 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  574 + id="path541" />
  575 + <path
  576 + d="m 185.19655,65.473724 q -0.92191,0 -1.27744,0.21084 -0.35553,0.21084 -0.35553,0.719336 0,0.405143 0.26458,0.644922 0.26872,0.235645 0.7276,0.235645 0.63252,0 1.01286,-0.446485 0.38448,-0.450618 0.38448,-1.194759 v -0.169499 z m 1.51722,-0.314193 v 2.6417 h -0.76067 v -0.702799 q -0.26045,0.421679 -0.64906,0.624251 -0.38861,0.198438 -0.95085,0.198438 -0.71107,0 -1.13274,-0.396875 -0.41755,-0.40101 -0.41755,-1.070737 0,-0.781347 0.5209,-1.178223 0.52503,-0.396875 1.56269,-0.396875 h 1.06661 v -0.07441 q 0,-0.525033 -0.34727,-0.810287 -0.34313,-0.289388 -0.96738,-0.289388 -0.39688,0 -0.77308,0.09509 -0.37621,0.09508 -0.72347,0.285254 v -0.7028 q 0.41754,-0.16123 0.81028,-0.239779 0.39274,-0.08268 0.76482,-0.08268 1.00459,0 1.50068,0.520899 0.49609,0.520898 0.49609,1.579232 z"
  577 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  578 + id="path543" />
  579 + <path
  580 + d="m 192.12947,65.006569 v 2.794662 h -0.76068 v -2.769857 q 0,-0.657325 -0.25632,-0.98392 -0.25631,-0.326595 -0.76894,-0.326595 -0.61599,0 -0.97152,0.392741 -0.35553,0.392741 -0.35553,1.070736 v 2.616895 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.27285,-0.417545 0.64078,-0.624251 0.37208,-0.206706 0.85577,-0.206706 0.79788,0 1.20716,0.496094 0.40928,0.49196 0.40928,1.451075 z"
  581 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  582 + id="path545" />
  583 + <path
  584 + d="m 196.97878,63.348788 v 0.711068 q -0.32246,-0.177767 -0.64905,-0.264583 -0.32246,-0.09095 -0.65319,-0.09095 -0.74001,0 -1.14929,0.471289 -0.40928,0.467156 -0.40928,1.314649 0,0.847494 0.40928,1.318783 0.40928,0.467156 1.14929,0.467156 0.33073,0 0.65319,-0.08682 0.32659,-0.09095 0.64905,-0.268717 v 0.702799 q -0.31832,0.148829 -0.66146,0.223243 -0.33899,0.07441 -0.72347,0.07441 -1.04593,0 -1.66191,-0.657325 -0.61598,-0.657324 -0.61598,-1.773536 0,-1.132747 0.62011,-1.781804 0.62425,-0.649056 1.70739,-0.649056 0.3514,0 0.68627,0.07441 0.33486,0.07028 0.64905,0.214974 z"
  585 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  586 + id="path547" />
  587 + <path
  588 + d="m 200.09591,63.704322 q -0.61185,0 -0.96739,0.479558 -0.35553,0.475423 -0.35553,1.30638 0,0.830958 0.3514,1.310515 0.35553,0.475424 0.97152,0.475424 0.60771,0 0.96324,-0.479558 0.35554,-0.479557 0.35554,-1.306381 0,-0.822689 -0.35554,-1.302246 -0.35553,-0.483692 -0.96324,-0.483692 z m 0,-0.644922 q 0.99218,0 1.55856,0.644922 0.56637,0.644922 0.56637,1.785938 0,1.136882 -0.56637,1.785939 -0.56638,0.644922 -1.55856,0.644922 -0.99633,0 -1.5627,-0.644922 -0.56224,-0.649057 -0.56224,-1.785939 0,-1.141016 0.56224,-1.785938 0.56637,-0.644922 1.5627,-0.644922 z"
  589 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  590 + id="path549" />
  591 + <path
  592 + d="m 209.2199,63.873821 v -2.505274 h 0.76068 v 6.432684 H 209.2199 V 67.1067 q -0.23978,0.413411 -0.60771,0.615983 -0.3638,0.198438 -0.87643,0.198438 -0.83923,0 -1.3684,-0.669727 -0.52503,-0.669727 -0.52503,-1.761134 0,-1.091406 0.52503,-1.761133 0.52917,-0.669727 1.3684,-0.669727 0.51263,0 0.87643,0.202572 0.36793,0.198437 0.60771,0.611849 z m -2.59209,1.616439 q 0,0.839226 0.34313,1.318783 0.34727,0.475424 0.95085,0.475424 0.60358,0 0.95085,-0.475424 0.34726,-0.479557 0.34726,-1.318783 0,-0.839225 -0.34726,-1.314649 -0.34727,-0.479557 -0.95085,-0.479557 -0.60358,0 -0.95085,0.479557 -0.34313,0.475424 -0.34313,1.314649 z"
  593 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  594 + id="path551" />
  595 + <path
  596 + d="m 213.34162,63.704322 q -0.61185,0 -0.96739,0.479558 -0.35553,0.475423 -0.35553,1.30638 0,0.830958 0.3514,1.310515 0.35553,0.475424 0.97152,0.475424 0.60771,0 0.96325,-0.479558 0.35553,-0.479557 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302246 -0.35554,-0.483692 -0.96325,-0.483692 z m 0,-0.644922 q 0.99219,0 1.55856,0.644922 0.56637,0.644922 0.56637,1.785938 0,1.136882 -0.56637,1.785939 -0.56637,0.644922 -1.55856,0.644922 -0.99632,0 -1.5627,-0.644922 -0.56224,-0.649057 -0.56224,-1.785939 0,-1.141016 0.56224,-1.785938 0.56638,-0.644922 1.5627,-0.644922 z"
  597 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  598 + id="path553" />
  599 + <path
  600 + d="m 220.28694,64.853607 v 2.261361 h 1.33945 q 0.67386,0 0.99632,-0.276986 0.3266,-0.28112 0.3266,-0.855762 0,-0.578776 -0.3266,-0.851628 -0.32246,-0.276985 -0.99632,-0.276985 z m 0,-2.538348 v 1.860352 h 1.2361 q 0.61185,0 0.9095,-0.227376 0.30179,-0.23151 0.30179,-0.7028 0,-0.467155 -0.30179,-0.698665 -0.29765,-0.231511 -0.9095,-0.231511 z m -0.83509,-0.686263 h 2.1332 q 0.95498,0 1.47174,0.396875 0.51677,0.396875 0.51677,1.128614 0,0.566374 -0.26458,0.901237 -0.26459,0.334863 -0.77722,0.417546 0.61599,0.132292 0.95498,0.553971 0.34313,0.417546 0.34313,1.045932 0,0.826823 -0.56224,1.277442 -0.56224,0.450618 -1.5999,0.450618 h -2.21588 z"
  601 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  602 + id="path555" />
  603 + <path
  604 + d="m 227.91024,63.882089 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64492,0 -0.99219,0.42168 -0.34313,0.417546 -0.34313,1.203028 v 2.439128 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.421679 0.62425,-0.624251 0.38448,-0.206706 0.93431,-0.206706 0.0786,0 0.17364,0.0124 0.0951,0.0083 0.21084,0.02894 z"
  605 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  606 + id="path557" />
  607 + <path
  608 + d="m 230.81239,65.473724 q -0.92191,0 -1.27744,0.21084 -0.35554,0.21084 -0.35554,0.719336 0,0.405143 0.26459,0.644922 0.26871,0.235645 0.7276,0.235645 0.63252,0 1.01286,-0.446485 0.38447,-0.450618 0.38447,-1.194759 v -0.169499 z m 1.51722,-0.314193 v 2.6417 h -0.76068 v -0.702799 q -0.26045,0.421679 -0.64905,0.624251 -0.38861,0.198438 -0.95085,0.198438 -0.71107,0 -1.13275,-0.396875 -0.41754,-0.40101 -0.41754,-1.070737 0,-0.781347 0.5209,-1.178223 0.52503,-0.396875 1.56269,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34726,-0.810287 -0.34313,-0.289388 -0.96739,-0.289388 -0.39687,0 -0.77308,0.09509 -0.3762,0.09508 -0.72347,0.285254 v -0.7028 q 0.41755,-0.16123 0.81029,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50069,0.520899 0.49609,0.520898 0.49609,1.579232 z"
  609 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  610 + id="path559" />
  611 + <path
  612 + d="m 236.84821,63.307447 v 0.719336 q -0.32246,-0.165364 -0.66973,-0.248047 -0.34727,-0.08268 -0.71934,-0.08268 -0.56637,0 -0.85162,0.173633 -0.28112,0.173633 -0.28112,0.520898 0,0.264584 0.20257,0.417546 0.20257,0.148828 0.81442,0.285254 l 0.26045,0.05788 q 0.81029,0.173633 1.14928,0.49196 0.34313,0.314193 0.34313,0.880566 0,0.644923 -0.51263,1.021127 -0.50849,0.376205 -1.40146,0.376205 -0.37207,0 -0.77722,-0.07441 -0.401,-0.07028 -0.84749,-0.214974 v -0.785482 q 0.42168,0.219108 0.83096,0.330729 0.40928,0.107487 0.81029,0.107487 0.53743,0 0.82682,-0.181901 0.28939,-0.186035 0.28939,-0.520899 0,-0.310059 -0.21084,-0.475423 -0.20671,-0.165365 -0.91364,-0.318327 l -0.26459,-0.06201 q -0.70693,-0.148828 -1.02112,-0.454753 -0.3142,-0.310058 -0.3142,-0.847494 0,-0.65319 0.46302,-1.008724 0.46303,-0.355534 1.31465,-0.355534 0.42168,0 0.79375,0.06201 0.37207,0.06201 0.68627,0.186035 z"
  613 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  614 + id="path561" />
  615 + <path
  616 + d="m 238.30755,63.171021 h 0.76068 v 4.63021 h -0.76068 z m 0,-1.802474 h 0.76068 v 0.963249 h -0.76068 z"
  617 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  618 + id="path563" />
  619 + <path
  620 + d="m 240.65986,61.368547 h 0.76068 v 6.432684 h -0.76068 z"
  621 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  622 + id="path565" />
  623 + <path
  624 + d="m 243.20647,66.751166 h 0.8723 v 0.711068 l -0.67799,1.322917 h -0.5333 l 0.33899,-1.322917 z"
  625 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  626 + id="path567" />
  627 + <path
  628 + d="m 248.39479,63.171021 h 0.76067 v 4.63021 h -0.76067 z m 0,-1.802474 h 0.76067 v 0.963249 h -0.76067 z"
  629 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  630 + id="path569" />
  631 + <path
  632 + d="m 251.4995,61.856372 v 1.314649 h 1.56683 V 63.7622 h -1.56683 v 2.513542 q 0,0.566374 0.15297,0.727605 0.15709,0.16123 0.63252,0.16123 h 0.78134 v 0.636654 h -0.78134 q -0.88057,0 -1.21543,-0.326595 -0.33487,-0.330729 -0.33487,-1.198894 V 63.7622 h -0.5581 v -0.591179 h 0.5581 v -1.314649 z"
  633 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  634 + id="path571" />
  635 + <path
  636 + d="m 254.78613,61.628996 v 2.294434 h -0.7028 v -2.294434 z"
  637 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  638 + id="path573" />
  639 + <path
  640 + d="m 259.34606,63.307447 v 0.719336 q -0.32246,-0.165364 -0.66973,-0.248047 -0.34727,-0.08268 -0.71934,-0.08268 -0.56637,0 -0.85162,0.173633 -0.28112,0.173633 -0.28112,0.520898 0,0.264584 0.20257,0.417546 0.20257,0.148828 0.81442,0.285254 l 0.26045,0.05788 q 0.81028,0.173633 1.14928,0.49196 0.34313,0.314193 0.34313,0.880566 0,0.644923 -0.51263,1.021127 -0.50849,0.376205 -1.40146,0.376205 -0.37207,0 -0.77722,-0.07441 -0.40101,-0.07028 -0.84749,-0.214974 v -0.785482 q 0.42168,0.219108 0.83096,0.330729 0.40927,0.107487 0.81028,0.107487 0.53744,0 0.82683,-0.181901 0.28939,-0.186035 0.28939,-0.520899 0,-0.310059 -0.21084,-0.475423 -0.20671,-0.165365 -0.91364,-0.318327 l -0.26459,-0.06201 q -0.70693,-0.148828 -1.02112,-0.454753 -0.3142,-0.310058 -0.3142,-0.847494 0,-0.65319 0.46302,-1.008724 0.46302,-0.355534 1.31465,-0.355534 0.42168,0 0.79375,0.06201 0.37207,0.06201 0.68627,0.186035 z"
  641 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  642 + id="path575" />
  643 + <path
  644 + d="m 267.34558,65.006569 v 2.794662 h -0.76068 v -2.769857 q 0,-0.657325 -0.25632,-0.98392 -0.25631,-0.326595 -0.76894,-0.326595 -0.61599,0 -0.97152,0.392741 -0.35553,0.392741 -0.35553,1.070736 v 2.616895 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.27285,-0.417545 0.64078,-0.624251 0.37208,-0.206706 0.85577,-0.206706 0.79788,0 1.20716,0.496094 0.40928,0.49196 0.40928,1.451075 z"
  645 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  646 + id="path577" />
  647 + <path
  648 + d="m 270.65701,63.704322 q -0.61185,0 -0.96738,0.479558 -0.35554,0.475423 -0.35554,1.30638 0,0.830958 0.3514,1.310515 0.35554,0.475424 0.97152,0.475424 0.60771,0 0.96325,-0.479558 0.35553,-0.479557 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302246 -0.35554,-0.483692 -0.96325,-0.483692 z m 0,-0.644922 q 0.99219,0 1.55856,0.644922 0.56638,0.644922 0.56638,1.785938 0,1.136882 -0.56638,1.785939 -0.56637,0.644922 -1.55856,0.644922 -0.99632,0 -1.5627,-0.644922 -0.56224,-0.649057 -0.56224,-1.785939 0,-1.141016 0.56224,-1.785938 0.56638,-0.644922 1.5627,-0.644922 z"
  649 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  650 + id="path579" />
  651 + <path
  652 + d="m 273.60049,63.171021 h 0.76068 l 0.95085,3.613218 0.94671,-3.613218 h 0.8971 l 0.95085,3.613218 0.94671,-3.613218 h 0.76068 l -1.2113,4.63021 h -0.8971 l -0.99632,-3.795118 -1.00046,3.795118 h -0.8971 z"
  653 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  654 + id="path581" />
  655 + <path
  656 + d="m 285.76306,65.473724 q -0.92191,0 -1.27744,0.21084 -0.35554,0.21084 -0.35554,0.719336 0,0.405143 0.26459,0.644922 0.26871,0.235645 0.7276,0.235645 0.63252,0 1.01286,-0.446485 0.38447,-0.450618 0.38447,-1.194759 v -0.169499 z m 1.51722,-0.314193 v 2.6417 h -0.76068 v -0.702799 q -0.26045,0.421679 -0.64905,0.624251 -0.38861,0.198438 -0.95085,0.198438 -0.71107,0 -1.13275,-0.396875 -0.41755,-0.40101 -0.41755,-1.070737 0,-0.781347 0.5209,-1.178223 0.52504,-0.396875 1.5627,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34726,-0.810287 -0.34314,-0.289388 -0.96739,-0.289388 -0.39687,0 -0.77308,0.09509 -0.3762,0.09508 -0.72347,0.285254 v -0.7028 q 0.41755,-0.16123 0.81029,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50068,0.520899 0.4961,0.520898 0.4961,1.579232 z"
  657 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  658 + id="path583" />
  659 + <path
  660 + d="m 292.69598,65.006569 v 2.794662 h -0.76068 v -2.769857 q 0,-0.657325 -0.25631,-0.98392 -0.25632,-0.326595 -0.76895,-0.326595 -0.61598,0 -0.97152,0.392741 -0.35553,0.392741 -0.35553,1.070736 v 2.616895 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.27285,-0.417545 0.64079,-0.624251 0.37207,-0.206706 0.85576,-0.206706 0.79788,0 1.20716,0.496094 0.40928,0.49196 0.40928,1.451075 z"
  661 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  662 + id="path585" />
  663 + <path
  664 + d="m 86.845928,74.28766 q -0.611849,0 -0.967383,0.479557 -0.355534,0.475424 -0.355534,1.306381 0,0.830957 0.3514,1.310515 0.355534,0.475423 0.971517,0.475423 0.607716,0 0.96325,-0.479557 0.355534,-0.479558 0.355534,-1.306381 0,-0.822689 -0.355534,-1.302247 -0.355534,-0.483691 -0.96325,-0.483691 z m 0,-0.644922 q 0.992188,0 1.558562,0.644922 0.566374,0.644922 0.566374,1.785938 0,1.136882 -0.566374,1.785938 -0.566374,0.644922 -1.558562,0.644922 -0.996322,0 -1.562695,-0.644922 -0.56224,-0.649056 -0.56224,-1.785938 0,-1.141016 0.56224,-1.785938 0.566373,-0.644922 1.562695,-0.644922 z"
  665 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  666 + id="path587" />
  667 + <path
  668 + d="m 92.575813,71.951884 v 0.63252 h -0.727604 q -0.409278,0 -0.570508,0.165365 -0.157096,0.165364 -0.157096,0.595312 v 0.409278 h 2.087728 v -0.322461 q 0,-0.77308 0.359668,-1.12448 0.115756,-0.115755 0.276986,-0.194303 0.322461,-0.161231 0.86403,-0.161231 h 0.719337 v 0.63252 h -0.727605 q -0.409277,0 -0.570508,0.165365 -0.157096,0.165364 -0.157096,0.595312 v 0.409278 h 2.85254 v 4.63021 h -0.764812 v -4.039032 h -2.087728 v 4.039032 h -0.764812 v -4.039032 h -2.087728 v 4.039032 h -0.764812 v -4.039032 h -0.727604 v -0.591178 h 0.727604 v -0.322461 q 0,-0.77308 0.359668,-1.12448 0.359668,-0.355534 1.141016,-0.355534 z m 3.48506,0.0083 h 0.764812 v 0.963249 h -0.764812 z"
  669 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  670 + id="path589" />
  671 + <path
  672 + d="m 101.74942,73.932126 v 0.711068 q -0.32246,-0.177767 -0.64906,-0.264584 -0.32246,-0.09095 -0.65319,-0.09095 -0.740007,0 -1.149284,0.471289 -0.409278,0.467155 -0.409278,1.314649 0,0.847494 0.409278,1.318783 0.409277,0.467155 1.149284,0.467155 0.33073,0 0.65319,-0.08682 0.3266,-0.09095 0.64906,-0.268718 v 0.7028 q -0.31833,0.148828 -0.66146,0.223242 -0.339,0.07441 -0.72347,0.07441 -1.045934,0 -1.661917,-0.657324 -0.615984,-0.657325 -0.615984,-1.773536 0,-1.132748 0.620118,-1.781804 0.624251,-0.649056 1.707393,-0.649056 0.3514,0 0.68626,0.07441 0.33486,0.07028 0.64906,0.214974 z"
  673 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  674 + id="path591" />
  675 + <path
  676 + d="m 103.07233,73.754359 h 0.76068 v 4.63021 h -0.76068 z m 0,-1.802475 h 0.76068 v 0.963249 h -0.76068 z"
  677 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  678 + id="path593" />
  679 + <path
  680 + d="m 107.52891,76.057061 q -0.92191,0 -1.27744,0.21084 -0.35553,0.21084 -0.35553,0.719337 0,0.405143 0.26458,0.644922 0.26872,0.235644 0.7276,0.235644 0.63252,0 1.01286,-0.446484 0.38448,-0.450619 0.38448,-1.19476 v -0.169499 z m 1.51722,-0.314192 v 2.6417 h -0.76067 v -0.7028 q -0.26045,0.42168 -0.64906,0.624252 -0.38861,0.198437 -0.95085,0.198437 -0.71107,0 -1.13275,-0.396875 -0.41754,-0.401009 -0.41754,-1.070736 0,-0.781348 0.5209,-1.178223 0.52503,-0.396875 1.56269,-0.396875 h 1.06661 v -0.07441 q 0,-0.525033 -0.34727,-0.810287 -0.34313,-0.289388 -0.96738,-0.289388 -0.39688,0 -0.77308,0.09508 -0.37621,0.09508 -0.72347,0.285254 v -0.702799 q 0.41754,-0.161231 0.81028,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50069,0.520898 0.49609,0.520899 0.49609,1.579233 z"
  681 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  682 + id="path595" />
  683 + <path
  684 + d="m 110.61296,71.951884 h 0.76068 v 6.432685 h -0.76068 z"
  685 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  686 + id="path597" />
  687 + <path
  688 + d="m 116.52475,75.436944 v 2.261362 h 1.33945 q 0.67386,0 0.99632,-0.276986 0.3266,-0.28112 0.3266,-0.855762 0,-0.578776 -0.3266,-0.851628 -0.32246,-0.276986 -0.99632,-0.276986 z m 0,-2.538347 v 1.860352 h 1.2361 q 0.61185,0 0.9095,-0.227376 0.3018,-0.231511 0.3018,-0.7028 0,-0.467155 -0.3018,-0.698666 -0.29765,-0.23151 -0.9095,-0.23151 z m -0.83509,-0.686264 h 2.1332 q 0.95498,0 1.47175,0.396876 0.51676,0.396875 0.51676,1.128613 0,0.566374 -0.26458,0.901238 -0.26459,0.334863 -0.77722,0.417545 0.61599,0.132292 0.95498,0.553972 0.34314,0.417546 0.34314,1.045931 0,0.826824 -0.56224,1.277442 -0.56224,0.450619 -1.59991,0.450619 h -2.21588 z"
  689 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  690 + id="path599" />
  691 + <path
  692 + d="m 124.14806,74.465427 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64492,0 -0.99219,0.42168 -0.34313,0.417545 -0.34313,1.203027 v 2.439129 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.42168 0.62425,-0.624252 0.38447,-0.206705 0.93431,-0.206705 0.0785,0 0.17364,0.0124 0.0951,0.0083 0.21084,0.02894 z"
  693 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  694 + id="path601" />
  695 + <path
  696 + d="m 127.05021,76.057061 q -0.92191,0 -1.27744,0.21084 -0.35554,0.21084 -0.35554,0.719337 0,0.405143 0.26459,0.644922 0.26871,0.235644 0.7276,0.235644 0.63252,0 1.01286,-0.446484 0.38447,-0.450619 0.38447,-1.19476 v -0.169499 z m 1.51722,-0.314192 v 2.6417 h -0.76068 v -0.7028 q -0.26045,0.42168 -0.64905,0.624252 -0.38861,0.198437 -0.95085,0.198437 -0.71107,0 -1.13275,-0.396875 -0.41754,-0.401009 -0.41754,-1.070736 0,-0.781348 0.52089,-1.178223 0.52504,-0.396875 1.5627,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34726,-0.810287 -0.34313,-0.289388 -0.96739,-0.289388 -0.39687,0 -0.77308,0.09508 -0.3762,0.09508 -0.72347,0.285254 v -0.702799 q 0.41755,-0.161231 0.81029,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50069,0.520898 0.49609,0.520899 0.49609,1.579233 z"
  697 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  698 + id="path603" />
  699 + <path
  700 + d="m 129.80353,73.754359 h 3.61322 v 0.694531 l -2.86081,3.327964 h 2.86081 v 0.607715 h -3.71657 v -0.694532 l 2.86081,-3.327963 h -2.75746 z"
  701 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  702 + id="path605" />
  703 + <path
  704 + d="m 134.57843,73.754359 h 0.76068 v 4.63021 h -0.76068 z m 0,-1.802475 h 0.76068 v 0.963249 h -0.76068 z"
  705 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  706 + id="path607" />
  707 + <path
  708 + d="m 136.93075,71.951884 h 0.76067 v 6.432685 h -0.76067 z"
  709 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  710 + id="path609" />
  711 + <path
  712 + d="m 139.28306,73.754359 h 0.76067 v 4.63021 h -0.76067 z m 0,-1.802475 h 0.76067 v 0.963249 h -0.76067 z"
  713 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  714 + id="path611" />
  715 + <path
  716 + d="m 143.73964,76.057061 q -0.92191,0 -1.27745,0.21084 -0.35553,0.21084 -0.35553,0.719337 0,0.405143 0.26458,0.644922 0.26872,0.235644 0.72761,0.235644 0.63252,0 1.01286,-0.446484 0.38447,-0.450619 0.38447,-1.19476 v -0.169499 z m 1.51722,-0.314192 v 2.6417 h -0.76068 v -0.7028 q -0.26045,0.42168 -0.64906,0.624252 -0.3886,0.198437 -0.95084,0.198437 -0.71107,0 -1.13275,-0.396875 -0.41755,-0.401009 -0.41755,-1.070736 0,-0.781348 0.5209,-1.178223 0.52503,-0.396875 1.5627,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34727,-0.810287 -0.34313,-0.289388 -0.96738,-0.289388 -0.39687,0 -0.77308,0.09508 -0.3762,0.09508 -0.72347,0.285254 v -0.702799 q 0.41755,-0.161231 0.81029,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50068,0.520898 0.4961,0.520899 0.4961,1.579233 z"
  717 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  718 + id="path613" />
  719 + <path
  720 + d="m 150.67255,75.589906 v 2.794663 h -0.76068 v -2.769858 q 0,-0.657324 -0.25631,-0.98392 -0.25632,-0.326595 -0.76895,-0.326595 -0.61598,0 -0.97152,0.392741 -0.35553,0.392741 -0.35553,1.070736 v 2.616896 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.27285,-0.417546 0.64079,-0.624252 0.37207,-0.206705 0.85576,-0.206705 0.79788,0 1.20716,0.496094 0.40928,0.491959 0.40928,1.451074 z"
  721 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  722 + id="path615" />
  723 + <path
  724 + d="m 159.12268,77.504002 v -1.65778 h -1.36426 v -0.686264 h 2.19108 v 2.649969 q -0.48369,0.343131 -1.0666,0.520898 -0.58291,0.173633 -1.24437,0.173633 -1.44694,0 -2.26549,-0.843359 -0.81443,-0.847494 -0.81443,-2.356447 0,-1.513086 0.81443,-2.356446 0.81855,-0.847494 2.26549,-0.847494 0.60358,0 1.14515,0.148828 0.5457,0.148829 1.00459,0.438217 v 0.888835 q -0.46302,-0.392741 -0.98392,-0.591179 -0.5209,-0.198437 -1.09554,-0.198437 -1.13275,0 -1.70326,0.632519 -0.56637,0.63252 -0.56637,1.885157 0,1.248503 0.56637,1.881023 0.57051,0.63252 1.70326,0.63252 0.44235,0 0.78962,-0.07441 0.34726,-0.07855 0.62425,-0.239779 z"
  725 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  726 + id="path617" />
  727 + <path
  728 + d="m 163.23613,74.28766 q -0.61185,0 -0.96739,0.479557 -0.35553,0.475424 -0.35553,1.306381 0,0.830957 0.3514,1.310515 0.35553,0.475423 0.97152,0.475423 0.60771,0 0.96325,-0.479557 0.35553,-0.479558 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302247 -0.35554,-0.483691 -0.96325,-0.483691 z m 0,-0.644922 q 0.99218,0 1.55856,0.644922 0.56637,0.644922 0.56637,1.785938 0,1.136882 -0.56637,1.785938 -0.56638,0.644922 -1.55856,0.644922 -0.99633,0 -1.5627,-0.644922 -0.56224,-0.649056 -0.56224,-1.785938 0,-1.141016 0.56224,-1.785938 0.56637,-0.644922 1.5627,-0.644922 z"
  729 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  730 + id="path619" />
  731 + <path
  732 + d="m 166.07626,73.754359 h 0.80616 l 1.44694,3.886069 1.44694,-3.886069 h 0.80615 l -1.73633,4.63021 h -1.03353 z"
  733 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  734 + id="path621" />
  735 + <path
  736 + d="m 175.593,75.879294 v 0.372071 h -3.49746 q 0.0496,0.785482 0.47129,1.198894 0.42581,0.409277 1.18235,0.409277 0.43822,0 0.8475,-0.107487 0.41341,-0.107487 0.81855,-0.322461 v 0.719336 q -0.40927,0.173633 -0.83922,0.264584 -0.42995,0.09095 -0.8723,0.09095 -1.10794,0 -1.757,-0.644922 -0.64492,-0.644922 -0.64492,-1.744597 0,-1.136882 0.61185,-1.802475 0.61598,-0.669726 1.65778,-0.669726 0.93431,0 1.47588,0.603581 0.5457,0.599446 0.5457,1.632975 z m -0.76068,-0.223242 q -0.008,-0.624251 -0.3514,-0.996322 -0.33899,-0.37207 -0.90123,-0.37207 -0.63666,0 -1.02113,0.359668 -0.38034,0.359668 -0.43822,1.012858 z"
  737 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  738 + id="path623" />
  739 + <path
  740 + d="m 179.52454,74.465427 q -0.12815,-0.07441 -0.28112,-0.107487 -0.14882,-0.03721 -0.33073,-0.03721 -0.64492,0 -0.99218,0.42168 -0.34314,0.417545 -0.34314,1.203027 v 2.439129 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.42168 0.62426,-0.624252 0.38447,-0.206705 0.93431,-0.206705 0.0785,0 0.17363,0.0124 0.0951,0.0083 0.21084,0.02894 z"
  741 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  742 + id="path625" />
  743 + <path
  744 + d="m 184.02246,75.589906 v 2.794663 h -0.76067 v -2.769858 q 0,-0.657324 -0.25632,-0.98392 -0.25631,-0.326595 -0.76894,-0.326595 -0.61599,0 -0.97152,0.392741 -0.35554,0.392741 -0.35554,1.070736 v 2.616896 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.27286,-0.417546 0.64079,-0.624252 0.37207,-0.206705 0.85576,-0.206705 0.79789,0 1.20717,0.496094 0.40927,0.491959 0.40927,1.451074 z"
  745 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  746 + id="path627" />
  747 + <path
  748 + d="m 189.14463,74.643194 q 0.28526,-0.512631 0.68213,-0.756544 0.39688,-0.243912 0.93431,-0.243912 0.72347,0 1.11621,0.508496 0.39274,0.504362 0.39274,1.438672 v 2.794663 h -0.76481 v -2.769858 q 0,-0.665593 -0.23564,-0.988054 -0.23565,-0.322461 -0.71934,-0.322461 -0.59118,0 -0.93431,0.392741 -0.34313,0.392741 -0.34313,1.070736 v 2.616896 h -0.76481 v -2.769858 q 0,-0.669727 -0.23565,-0.988054 -0.23564,-0.322461 -0.7276,-0.322461 -0.58291,0 -0.92604,0.396875 -0.34313,0.392741 -0.34313,1.066602 v 2.616896 h -0.76482 v -4.63021 h 0.76482 v 0.719336 q 0.26044,-0.425814 0.62425,-0.628386 0.3638,-0.202571 0.86403,-0.202571 0.50436,0 0.85576,0.256315 0.35553,0.256315 0.52503,0.744141 z"
  749 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  750 + id="path629" />
  751 + <path
  752 + d="m 197.74773,75.879294 v 0.372071 h -3.49746 q 0.0496,0.785482 0.47129,1.198894 0.42581,0.409277 1.18236,0.409277 0.43821,0 0.84749,-0.107487 0.41341,-0.107487 0.81856,-0.322461 v 0.719336 q -0.40928,0.173633 -0.83923,0.264584 -0.42995,0.09095 -0.8723,0.09095 -1.10794,0 -1.757,-0.644922 -0.64492,-0.644922 -0.64492,-1.744597 0,-1.136882 0.61185,-1.802475 0.61598,-0.669726 1.65778,-0.669726 0.93431,0 1.47588,0.603581 0.5457,0.599446 0.5457,1.632975 z m -0.76067,-0.223242 q -0.008,-0.624251 -0.3514,-0.996322 -0.339,-0.37207 -0.90124,-0.37207 -0.63666,0 -1.02113,0.359668 -0.38034,0.359668 -0.43822,1.012858 z"
  753 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  754 + id="path631" />
  755 + <path
  756 + d="m 202.8451,75.589906 v 2.794663 h -0.76068 v -2.769858 q 0,-0.657324 -0.25632,-0.98392 -0.25631,-0.326595 -0.76894,-0.326595 -0.61599,0 -0.97152,0.392741 -0.35553,0.392741 -0.35553,1.070736 v 2.616896 h -0.76482 v -4.63021 h 0.76482 v 0.719336 q 0.27285,-0.417546 0.64078,-0.624252 0.37207,-0.206705 0.85577,-0.206705 0.79788,0 1.20716,0.496094 0.40928,0.491959 0.40928,1.451074 z"
  757 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  758 + id="path633" />
  759 + <path
  760 + d="m 205.11472,72.43971 v 1.314649 h 1.56683 v 0.591178 h -1.56683 v 2.513543 q 0,0.566374 0.15297,0.727604 0.15709,0.161231 0.63252,0.161231 h 0.78134 v 0.636654 h -0.78134 q -0.88057,0 -1.21543,-0.326595 -0.33487,-0.33073 -0.33487,-1.198894 v -2.513543 h -0.5581 v -0.591178 h 0.5581 V 72.43971 Z"
  761 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  762 + id="path635" />
  763 + <path
  764 + d="m 211.24148,72.898597 v 2.319239 h 1.05007 q 0.58291,0 0.90123,-0.301791 0.31833,-0.30179 0.31833,-0.859896 0,-0.553971 -0.31833,-0.855762 -0.31832,-0.30179 -0.90123,-0.30179 z m -0.83509,-0.686264 h 1.88516 q 1.03766,0 1.56683,0.47129 0.5333,0.467155 0.5333,1.372526 0,0.91364 -0.5333,1.380795 -0.52917,0.467155 -1.56683,0.467155 h -1.05007 v 2.48047 h -0.83509 z"
  765 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  766 + id="path637" />
  767 + <path
  768 + d="m 215.25157,76.55729 v -2.802931 h 0.76068 v 2.773992 q 0,0.657324 0.25631,0.988054 0.25632,0.326595 0.76895,0.326595 0.61598,0 0.97152,-0.392741 0.35966,-0.392741 0.35966,-1.070736 v -2.625164 h 0.76068 v 4.63021 h -0.76068 v -0.711068 q -0.27698,0.42168 -0.64492,0.628386 -0.3638,0.202571 -0.84749,0.202571 -0.79789,0 -1.2113,-0.496094 -0.41341,-0.496094 -0.41341,-1.451074 z m 1.9141,-2.914552 z"
  769 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  770 + id="path639" />
  771 + <path
  772 + d="m 224.02004,76.073598 q 0,-0.839226 -0.34727,-1.314649 -0.34313,-0.479557 -0.94671,-0.479557 -0.60358,0 -0.95085,0.479557 -0.34313,0.475423 -0.34313,1.314649 0,0.839226 0.34313,1.318783 0.34727,0.475423 0.95085,0.475423 0.60358,0 0.94671,-0.475423 0.34727,-0.479557 0.34727,-1.318783 z m -2.58796,-1.616439 q 0.23978,-0.413412 0.60358,-0.61185 0.36794,-0.202571 0.87643,-0.202571 0.84336,0 1.3684,0.669726 0.52916,0.669727 0.52916,1.761134 0,1.091407 -0.52916,1.761133 -0.52504,0.669727 -1.3684,0.669727 -0.50849,0 -0.87643,-0.198437 -0.3638,-0.202572 -0.60358,-0.615984 v 0.694532 h -0.76481 v -6.432685 h 0.76481 z"
  773 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  774 + id="path641" />
  775 + <path
  776 + d="m 226.07055,71.951884 h 0.76068 v 6.432685 h -0.76068 z"
  777 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  778 + id="path643" />
  779 + <path
  780 + d="m 228.42288,73.754359 h 0.76067 v 4.63021 h -0.76067 z m 0,-1.802475 h 0.76067 v 0.963249 h -0.76067 z"
  781 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  782 + id="path645" />
  783 + <path
  784 + d="m 234.10728,73.932126 v 0.711068 q -0.32246,-0.177767 -0.64905,-0.264584 -0.32246,-0.09095 -0.65319,-0.09095 -0.74001,0 -1.14929,0.471289 -0.40927,0.467155 -0.40927,1.314649 0,0.847494 0.40927,1.318783 0.40928,0.467155 1.14929,0.467155 0.33073,0 0.65319,-0.08682 0.32659,-0.09095 0.64905,-0.268718 v 0.7028 q -0.31832,0.148828 -0.66145,0.223242 -0.339,0.07441 -0.72347,0.07441 -1.04594,0 -1.66192,-0.657324 -0.61598,-0.657325 -0.61598,-1.773536 0,-1.132748 0.62012,-1.781804 0.62425,-0.649056 1.70739,-0.649056 0.3514,0 0.68626,0.07441 0.33486,0.07028 0.64905,0.214974 z"
  785 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  786 + id="path647" />
  787 + <path
  788 + d="m 241.85461,72.414905 v 0.814421 q -0.47543,-0.227376 -0.89711,-0.338998 -0.42168,-0.111621 -0.81442,-0.111621 -0.68213,0 -1.0542,0.264584 -0.36793,0.264583 -0.36793,0.752409 0,0.409277 0.24391,0.620117 0.24805,0.206706 0.93431,0.334864 l 0.50436,0.103353 q 0.93431,0.177767 1.37666,0.628385 0.44649,0.446485 0.44649,1.198894 0,0.897103 -0.60358,1.360124 -0.59945,0.463021 -1.76114,0.463021 -0.43821,0 -0.93431,-0.09922 -0.49196,-0.09922 -1.02112,-0.293523 v -0.859896 q 0.50849,0.285254 0.99632,0.429948 0.48782,0.144694 0.95911,0.144694 0.71521,0 1.10381,-0.28112 0.38861,-0.28112 0.38861,-0.802018 0,-0.454753 -0.28112,-0.711068 -0.27699,-0.256315 -0.91364,-0.384473 l -0.5085,-0.09922 q -0.93431,-0.186035 -1.35185,-0.58291 -0.41755,-0.396875 -0.41755,-1.103809 0,-0.818555 0.57464,-1.289844 0.57878,-0.47129 1.59164,-0.47129 0.43408,0 0.8847,0.07855 0.45062,0.07855 0.92191,0.235645 z"
  789 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  790 + id="path649" />
  791 + <path
  792 + d="m 245.29007,74.28766 q -0.61185,0 -0.96739,0.479557 -0.35553,0.475424 -0.35553,1.306381 0,0.830957 0.3514,1.310515 0.35553,0.475423 0.97152,0.475423 0.60771,0 0.96325,-0.479557 0.35553,-0.479558 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302247 -0.35554,-0.483691 -0.96325,-0.483691 z m 0,-0.644922 q 0.99218,0 1.55856,0.644922 0.56637,0.644922 0.56637,1.785938 0,1.136882 -0.56637,1.785938 -0.56638,0.644922 -1.55856,0.644922 -0.99633,0 -1.5627,-0.644922 -0.56224,-0.649056 -0.56224,-1.785938 0,-1.141016 0.56224,-1.785938 0.56637,-0.644922 1.5627,-0.644922 z"
  793 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  794 + id="path651" />
  795 + <path
  796 + d="m 251.01996,71.951884 v 0.63252 h -0.72761 q -0.40927,0 -0.57051,0.165365 -0.15709,0.165364 -0.15709,0.595312 v 0.409278 h 1.25264 v 0.591178 h -1.25264 v 4.039032 h -0.76481 v -4.039032 h -0.72761 v -0.591178 h 0.72761 v -0.322461 q 0,-0.77308 0.35966,-1.12448 0.35967,-0.355534 1.14102,-0.355534 z"
  797 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  798 + id="path653" />
  799 + <path
  800 + d="m 252.26019,72.43971 v 1.314649 h 1.56683 v 0.591178 h -1.56683 v 2.513543 q 0,0.566374 0.15296,0.727604 0.15709,0.161231 0.63252,0.161231 h 0.78135 v 0.636654 h -0.78135 q -0.88057,0 -1.21543,-0.326595 -0.33487,-0.33073 -0.33487,-1.198894 v -2.513543 h -0.5581 v -0.591178 h 0.5581 V 72.43971 Z"
  801 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  802 + id="path655" />
  803 + <path
  804 + d="m 254.38511,73.754359 h 0.76068 l 0.95085,3.613217 0.94671,-3.613217 h 0.8971 l 0.95085,3.613217 0.94671,-3.613217 h 0.76068 l -1.2113,4.63021 h -0.8971 l -0.99632,-3.795119 -1.00046,3.795119 h -0.8971 z"
  805 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  806 + id="path657" />
  807 + <path
  808 + d="m 263.85638,76.057061 q -0.92191,0 -1.27744,0.21084 -0.35554,0.21084 -0.35554,0.719337 0,0.405143 0.26459,0.644922 0.26872,0.235644 0.7276,0.235644 0.63252,0 1.01286,-0.446484 0.38447,-0.450619 0.38447,-1.19476 v -0.169499 z m 1.51722,-0.314192 v 2.6417 h -0.76068 v -0.7028 q -0.26045,0.42168 -0.64905,0.624252 -0.38861,0.198437 -0.95085,0.198437 -0.71107,0 -1.13275,-0.396875 -0.41754,-0.401009 -0.41754,-1.070736 0,-0.781348 0.5209,-1.178223 0.52503,-0.396875 1.56269,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34726,-0.810287 -0.34313,-0.289388 -0.96738,-0.289388 -0.39688,0 -0.77308,0.09508 -0.37621,0.09508 -0.72347,0.285254 v -0.702799 q 0.41754,-0.161231 0.81028,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50069,0.520898 0.49609,0.520899 0.49609,1.579233 z"
  809 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  810 + id="path659" />
  811 + <path
  812 + d="m 269.62347,74.465427 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64493,0 -0.99219,0.42168 -0.34313,0.417545 -0.34313,1.203027 v 2.439129 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.42168 0.62425,-0.624252 0.38447,-0.206705 0.93431,-0.206705 0.0785,0 0.17363,0.0124 0.0951,0.0083 0.21084,0.02894 z"
  813 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  814 + id="path661" />
  815 + <path
  816 + d="m 274.1958,75.879294 v 0.372071 h -3.49746 q 0.0496,0.785482 0.47129,1.198894 0.42581,0.409277 1.18235,0.409277 0.43822,0 0.8475,-0.107487 0.41341,-0.107487 0.81855,-0.322461 v 0.719336 q -0.40928,0.173633 -0.83922,0.264584 -0.42995,0.09095 -0.8723,0.09095 -1.10795,0 -1.757,-0.644922 -0.64492,-0.644922 -0.64492,-1.744597 0,-1.136882 0.61185,-1.802475 0.61598,-0.669726 1.65778,-0.669726 0.93431,0 1.47588,0.603581 0.5457,0.599446 0.5457,1.632975 z m -0.76068,-0.223242 q -0.008,-0.624251 -0.3514,-0.996322 -0.339,-0.37207 -0.90124,-0.37207 -0.63665,0 -1.02112,0.359668 -0.38034,0.359668 -0.43822,1.012858 z"
  817 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  818 + id="path663" />
  819 + <path
  820 + d="m 278.87149,77.690037 v 2.455665 h -0.76481 v -6.391343 h 0.76481 v 0.7028 q 0.23978,-0.413412 0.60358,-0.61185 0.36793,-0.202571 0.87643,-0.202571 0.84336,0 1.36839,0.669726 0.52917,0.669727 0.52917,1.761134 0,1.091407 -0.52917,1.761133 -0.52503,0.669727 -1.36839,0.669727 -0.5085,0 -0.87643,-0.198437 -0.3638,-0.202572 -0.60358,-0.615984 z m 2.58795,-1.616439 q 0,-0.839226 -0.34726,-1.314649 -0.34313,-0.479557 -0.94671,-0.479557 -0.60359,0 -0.95085,0.479557 -0.34313,0.475423 -0.34313,1.314649 0,0.839226 0.34313,1.318783 0.34726,0.475423 0.95085,0.475423 0.60358,0 0.94671,-0.475423 0.34726,-0.479557 0.34726,-1.318783 z"
  821 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  822 + id="path665" />
  823 + <path
  824 + d="m 286.19302,74.465427 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64493,0 -0.99219,0.42168 -0.34313,0.417545 -0.34313,1.203027 v 2.439129 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.42168 0.62425,-0.624252 0.38447,-0.206705 0.93431,-0.206705 0.0786,0 0.17363,0.0124 0.0951,0.0083 0.21084,0.02894 z"
  825 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  826 + id="path667" />
  827 + <path
  828 + d="m 288.59907,74.28766 q -0.61185,0 -0.96738,0.479557 -0.35554,0.475424 -0.35554,1.306381 0,0.830957 0.3514,1.310515 0.35554,0.475423 0.97152,0.475423 0.60772,0 0.96325,-0.479557 0.35553,-0.479558 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302247 -0.35553,-0.483691 -0.96325,-0.483691 z m 0,-0.644922 q 0.99219,0 1.55856,0.644922 0.56638,0.644922 0.56638,1.785938 0,1.136882 -0.56638,1.785938 -0.56637,0.644922 -1.55856,0.644922 -0.99632,0 -1.56269,-0.644922 -0.56224,-0.649056 -0.56224,-1.785938 0,-1.141016 0.56224,-1.785938 0.56637,-0.644922 1.56269,-0.644922 z"
  829 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  830 + id="path669" />
  831 + <path
  832 + d="m 291.9849,73.754359 h 0.76068 v 4.712892 q 0,0.884701 -0.339,1.281576 -0.33486,0.396875 -1.08313,0.396875 h -0.28939 V 79.50078 h 0.20257 q 0.43408,0 0.59118,-0.202571 0.15709,-0.198438 0.15709,-0.830958 z m 0,-1.802475 h 0.76068 v 0.963249 h -0.76068 z"
  833 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  834 + id="path671" />
  835 + <path
  836 + d="m 298.2977,75.879294 v 0.372071 h -3.49747 q 0.0496,0.785482 0.47129,1.198894 0.42582,0.409277 1.18236,0.409277 0.43822,0 0.8475,-0.107487 0.41341,-0.107487 0.81855,-0.322461 v 0.719336 q -0.40928,0.173633 -0.83923,0.264584 -0.42994,0.09095 -0.87229,0.09095 -1.10795,0 -1.757,-0.644922 -0.64493,-0.644922 -0.64493,-1.744597 0,-1.136882 0.61185,-1.802475 0.61599,-0.669726 1.65778,-0.669726 0.93431,0 1.47588,0.603581 0.54571,0.599446 0.54571,1.632975 z m -0.76068,-0.223242 q -0.008,-0.624251 -0.3514,-0.996322 -0.339,-0.37207 -0.90124,-0.37207 -0.63665,0 -1.02112,0.359668 -0.38034,0.359668 -0.43822,1.012858 z"
  837 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  838 + id="path673" />
  839 + <path
  840 + d="m 302.8783,73.932126 v 0.711068 q -0.32247,-0.177767 -0.64906,-0.264584 -0.32246,-0.09095 -0.65319,-0.09095 -0.74001,0 -1.14928,0.471289 -0.40928,0.467155 -0.40928,1.314649 0,0.847494 0.40928,1.318783 0.40927,0.467155 1.14928,0.467155 0.33073,0 0.65319,-0.08682 0.32659,-0.09095 0.64906,-0.268718 v 0.7028 q -0.31833,0.148828 -0.66146,0.223242 -0.339,0.07441 -0.72347,0.07441 -1.04593,0 -1.66192,-0.657324 -0.61598,-0.657325 -0.61598,-1.773536 0,-1.132748 0.62012,-1.781804 0.62425,-0.649056 1.70739,-0.649056 0.3514,0 0.68626,0.07441 0.33486,0.07028 0.64906,0.214974 z"
  841 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  842 + id="path675" />
  843 + <path
  844 + d="m 304.95364,72.43971 v 1.314649 h 1.56683 v 0.591178 h -1.56683 v 2.513543 q 0,0.566374 0.15296,0.727604 0.1571,0.161231 0.63252,0.161231 h 0.78135 v 0.636654 h -0.78135 q -0.88057,0 -1.21543,-0.326595 -0.33486,-0.33073 -0.33486,-1.198894 v -2.513543 h -0.55811 v -0.591178 h 0.55811 V 72.43971 Z"
  845 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  846 + id="path677" />
  847 + <path
  848 + d="m 307.71522,77.334503 h 0.8723 v 0.711068 l -0.678,1.322918 h -0.5333 l 0.339,-1.322918 z"
  849 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  850 + id="path679" />
  851 + <path
  852 + d="m 87.155987,86.640399 q -0.921908,0 -1.277442,0.21084 -0.355534,0.21084 -0.355534,0.719336 0,0.405144 0.264584,0.644922 0.268717,0.235645 0.727604,0.235645 0.63252,0 1.012859,-0.446485 0.384472,-0.450618 0.384472,-1.194759 v -0.169499 z m 1.517221,-0.314193 v 2.6417 H 87.91253 v -0.702799 q -0.260449,0.42168 -0.649056,0.624251 -0.388607,0.198438 -0.950847,0.198438 -0.711068,0 -1.132747,-0.396875 -0.417546,-0.40101 -0.417546,-1.070736 0,-0.781348 0.520899,-1.178224 0.525032,-0.396875 1.562695,-0.396875 h 1.066602 v -0.07441 q 0,-0.525033 -0.347265,-0.810287 -0.343132,-0.289388 -0.967384,-0.289388 -0.396875,0 -0.773079,0.09508 -0.376205,0.09508 -0.723471,0.285254 v -0.7028 q 0.417546,-0.16123 0.810287,-0.239779 0.392741,-0.08268 0.764812,-0.08268 1.00459,0 1.500684,0.520899 0.496094,0.520898 0.496094,1.579232 z"
  853 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  854 + id="path681" />
  855 + <path
  856 + d="m 94.0889,86.173244 v 2.794662 h -0.760677 v -2.769857 q 0,-0.657325 -0.256315,-0.98392 -0.256316,-0.326595 -0.768946,-0.326595 -0.615983,0 -0.971517,0.392741 -0.355534,0.392741 -0.355534,1.070736 v 2.616895 h -0.764812 v -4.63021 h 0.764812 v 0.719337 q 0.272851,-0.417546 0.640788,-0.624252 0.37207,-0.206706 0.855762,-0.206706 0.797884,0 1.207162,0.496094 0.409277,0.49196 0.409277,1.451075 z"
  857 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  858 + id="path683" />
  859 + <path
  860 + d="m 98.652964,85.040496 v -2.505274 h 0.760678 v 6.432684 h -0.760678 v -0.694531 q -0.239779,0.413412 -0.607715,0.615983 -0.363802,0.198438 -0.876433,0.198438 -0.839225,0 -1.368392,-0.669727 -0.525033,-0.669727 -0.525033,-1.761133 0,-1.091407 0.525033,-1.761134 0.529167,-0.669727 1.368392,-0.669727 0.512631,0 0.876433,0.202572 0.367936,0.198437 0.607715,0.611849 z m -2.592091,1.61644 q 0,0.839225 0.343132,1.318783 0.347266,0.475423 0.950847,0.475423 0.603581,0 0.950846,-0.475423 0.347266,-0.479558 0.347266,-1.318783 0,-0.839226 -0.347266,-1.314649 -0.347265,-0.479558 -0.950846,-0.479558 -0.603581,0 -0.950847,0.479558 -0.343132,0.475423 -0.343132,1.314649 z"
  861 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  862 + id="path685" />
  863 + <path
  864 + d="m 103.67178,84.337696 h 0.76068 v 4.63021 h -0.76068 z m 0,-1.802474 h 0.76068 v 0.963249 h -0.76068 z"
  865 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  866 + id="path687" />
  867 + <path
  868 + d="m 108.97585,84.474122 v 0.719336 q -0.32246,-0.165364 -0.66972,-0.248047 -0.34727,-0.08268 -0.71934,-0.08268 -0.56637,0 -0.85163,0.173633 -0.28112,0.173633 -0.28112,0.520899 0,0.264583 0.20257,0.417545 0.20258,0.148829 0.81442,0.285254 l 0.26045,0.05788 q 0.81029,0.173633 1.14929,0.49196 0.34313,0.314193 0.34313,0.880567 0,0.644922 -0.51263,1.021126 -0.5085,0.376205 -1.40147,0.376205 -0.37207,0 -0.77721,-0.07441 -0.40101,-0.07028 -0.84749,-0.214974 v -0.785482 q 0.42168,0.219108 0.83095,0.330729 0.40928,0.107487 0.81029,0.107487 0.53744,0 0.82682,-0.181901 0.28939,-0.186035 0.28939,-0.520899 0,-0.310059 -0.21084,-0.475423 -0.2067,-0.165365 -0.91364,-0.318327 l -0.26458,-0.06201 q -0.70693,-0.148828 -1.02113,-0.454753 -0.31419,-0.310058 -0.31419,-0.847493 0,-0.653191 0.46302,-1.008725 0.46302,-0.355534 1.31465,-0.355534 0.42168,0 0.79375,0.06201 0.37207,0.06201 0.68626,0.186035 z"
  869 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  870 + id="path689" />
  871 + <path
  872 + d="m 113.04796,87.140627 v -2.802931 h 0.76067 v 2.773992 q 0,0.657325 0.25632,0.988054 0.25631,0.326595 0.76895,0.326595 0.61598,0 0.97151,-0.392741 0.35967,-0.392741 0.35967,-1.070736 v -2.625164 h 0.76068 v 4.63021 h -0.76068 v -0.711068 q -0.27699,0.42168 -0.64492,0.628386 -0.3638,0.202572 -0.8475,0.202572 -0.79788,0 -1.21129,-0.496094 -0.41341,-0.496094 -0.41341,-1.451075 z m 1.91409,-2.914552 z"
  873 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  874 + id="path691" />
  875 + <path
  876 + d="m 121.44435,84.474122 v 0.719336 q -0.32247,-0.165364 -0.66973,-0.248047 -0.34727,-0.08268 -0.71934,-0.08268 -0.56637,0 -0.85163,0.173633 -0.28112,0.173633 -0.28112,0.520899 0,0.264583 0.20258,0.417545 0.20257,0.148829 0.81442,0.285254 l 0.26045,0.05788 q 0.81028,0.173633 1.14928,0.49196 0.34313,0.314193 0.34313,0.880567 0,0.644922 -0.51263,1.021126 -0.50849,0.376205 -1.40146,0.376205 -0.37207,0 -0.77722,-0.07441 -0.40101,-0.07028 -0.84749,-0.214974 v -0.785482 q 0.42168,0.219108 0.83096,0.330729 0.40927,0.107487 0.81028,0.107487 0.53744,0 0.82683,-0.181901 0.28938,-0.186035 0.28938,-0.520899 0,-0.310059 -0.21084,-0.475423 -0.2067,-0.165365 -0.91364,-0.318327 l -0.26458,-0.06201 q -0.70693,-0.148828 -1.02113,-0.454753 -0.31419,-0.310058 -0.31419,-0.847493 0,-0.653191 0.46302,-1.008725 0.46302,-0.355534 1.31465,-0.355534 0.42168,0 0.79375,0.06201 0.37207,0.06201 0.68627,0.186035 z"
  877 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  878 + id="path693" />
  879 + <path
  880 + d="m 126.86417,86.462632 v 0.372071 h -3.49746 q 0.0496,0.785482 0.47129,1.198893 0.42581,0.409278 1.18236,0.409278 0.43821,0 0.84749,-0.107487 0.41341,-0.107487 0.81856,-0.322461 v 0.719336 q -0.40928,0.173633 -0.83923,0.264583 -0.42995,0.09095 -0.8723,0.09095 -1.10794,0 -1.757,-0.644922 -0.64492,-0.644922 -0.64492,-1.744597 0,-1.136882 0.61185,-1.802475 0.61598,-0.669727 1.65778,-0.669727 0.93431,0 1.47588,0.603581 0.5457,0.599447 0.5457,1.632977 z m -0.76068,-0.223242 q -0.008,-0.624252 -0.3514,-0.996322 -0.33899,-0.372071 -0.90123,-0.372071 -0.63666,0 -1.02113,0.359668 -0.38034,0.359669 -0.43822,1.012859 z"
  881 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  882 + id="path695" />
  883 + <path
  884 + d="m 131.15952,85.040496 v -2.505274 h 0.76068 v 6.432684 h -0.76068 v -0.694531 q -0.23978,0.413412 -0.60771,0.615983 -0.36381,0.198438 -0.87644,0.198438 -0.83922,0 -1.36839,-0.669727 -0.52503,-0.669727 -0.52503,-1.761133 0,-1.091407 0.52503,-1.761134 0.52917,-0.669727 1.36839,-0.669727 0.51263,0 0.87644,0.202572 0.36793,0.198437 0.60771,0.611849 z m -2.59209,1.61644 q 0,0.839225 0.34313,1.318783 0.34727,0.475423 0.95085,0.475423 0.60358,0 0.95084,-0.475423 0.34727,-0.479558 0.34727,-1.318783 0,-0.839226 -0.34727,-1.314649 -0.34726,-0.479558 -0.95084,-0.479558 -0.60358,0 -0.95085,0.479558 -0.34313,0.475423 -0.34313,1.314649 z"
  885 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  886 + id="path697" />
  887 + <path
  888 + d="m 135.73599,84.337696 h 0.76067 l 0.95085,3.613218 0.94671,-3.613218 h 0.89711 l 0.95084,3.613218 0.94671,-3.613218 h 0.76068 l -1.21129,4.63021 h -0.89711 l -0.99632,-3.795118 -1.00046,3.795118 h -0.8971 z"
  889 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  890 + id="path699" />
  891 + <path
  892 + d="m 144.89719,84.870997 q -0.61185,0 -0.96739,0.479558 -0.35553,0.475423 -0.35553,1.306381 0,0.830957 0.3514,1.310514 0.35553,0.475424 0.97152,0.475424 0.60771,0 0.96325,-0.479558 0.35553,-0.479557 0.35553,-1.30638 0,-0.82269 -0.35553,-1.302247 -0.35554,-0.483692 -0.96325,-0.483692 z m 0,-0.644922 q 0.99218,0 1.55856,0.644922 0.56637,0.644922 0.56637,1.785939 0,1.136881 -0.56637,1.785938 -0.56638,0.644922 -1.55856,0.644922 -0.99633,0 -1.5627,-0.644922 -0.56224,-0.649057 -0.56224,-1.785938 0,-1.141017 0.56224,-1.785939 0.56637,-0.644922 1.5627,-0.644922 z"
  893 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  894 + id="path701" />
  895 + <path
  896 + d="m 150.96607,85.048764 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64492,0 -0.99219,0.42168 -0.34313,0.417546 -0.34313,1.203028 v 2.439128 h -0.76481 v -4.63021 h 0.76481 v 0.719337 q 0.23978,-0.42168 0.62425,-0.624252 0.38448,-0.206706 0.93431,-0.206706 0.0786,0 0.17364,0.0124 0.0951,0.0083 0.21084,0.02894 z"
  897 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  898 + id="path703" />
  899 + <path
  900 + d="m 151.76396,82.535222 h 0.76067 v 6.432684 h -0.76067 z"
  901 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  902 + id="path705" />
  903 + <path
  904 + d="m 157.16311,85.040496 v -2.505274 h 0.76068 v 6.432684 h -0.76068 v -0.694531 q -0.23978,0.413412 -0.60771,0.615983 -0.36381,0.198438 -0.87644,0.198438 -0.83922,0 -1.36839,-0.669727 -0.52503,-0.669727 -0.52503,-1.761133 0,-1.091407 0.52503,-1.761134 0.52917,-0.669727 1.36839,-0.669727 0.51263,0 0.87644,0.202572 0.36793,0.198437 0.60771,0.611849 z m -2.59209,1.61644 q 0,0.839225 0.34313,1.318783 0.34727,0.475423 0.95085,0.475423 0.60358,0 0.95084,-0.475423 0.34727,-0.479558 0.34727,-1.318783 0,-0.839226 -0.34727,-1.314649 -0.34726,-0.479558 -0.95084,-0.479558 -0.60358,0 -0.95085,0.479558 -0.34313,0.475423 -0.34313,1.314649 z"
  905 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  906 + id="path707" />
  907 + <path
  908 + d="m 159.04827,84.337696 h 0.76068 l 0.95084,3.613218 0.94671,-3.613218 h 0.89711 l 0.95084,3.613218 0.94672,-3.613218 h 0.76067 l -1.21129,4.63021 h -0.8971 l -0.99633,-3.795118 -1.00045,3.795118 h -0.89711 z"
  909 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  910 + id="path709" />
  911 + <path
  912 + d="m 166.41526,84.337696 h 0.76068 v 4.63021 h -0.76068 z m 0,-1.802474 h 0.76068 v 0.963249 h -0.76068 z"
  913 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  914 + id="path711" />
  915 + <path
  916 + d="m 171.81442,85.040496 v -2.505274 h 0.76067 v 6.432684 h -0.76067 v -0.694531 q -0.23978,0.413412 -0.60772,0.615983 -0.3638,0.198438 -0.87643,0.198438 -0.83923,0 -1.36839,-0.669727 -0.52504,-0.669727 -0.52504,-1.761133 0,-1.091407 0.52504,-1.761134 0.52916,-0.669727 1.36839,-0.669727 0.51263,0 0.87643,0.202572 0.36794,0.198437 0.60772,0.611849 z m -2.59209,1.61644 q 0,0.839225 0.34313,1.318783 0.34726,0.475423 0.95084,0.475423 0.60358,0 0.95085,-0.475423 0.34727,-0.479558 0.34727,-1.318783 0,-0.839226 -0.34727,-1.314649 -0.34727,-0.479558 -0.95085,-0.479558 -0.60358,0 -0.95084,0.479558 -0.34313,0.475423 -0.34313,1.314649 z"
  917 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  918 + id="path713" />
  919 + <path
  920 + d="m 178.10241,86.462632 v 0.372071 h -3.49746 q 0.0496,0.785482 0.47128,1.198893 0.42582,0.409278 1.18236,0.409278 0.43822,0 0.8475,-0.107487 0.41341,-0.107487 0.81855,-0.322461 v 0.719336 q -0.40928,0.173633 -0.83922,0.264583 -0.42995,0.09095 -0.8723,0.09095 -1.10795,0 -1.757,-0.644922 -0.64492,-0.644922 -0.64492,-1.744597 0,-1.136882 0.61184,-1.802475 0.61599,-0.669727 1.65778,-0.669727 0.93432,0 1.47588,0.603581 0.54571,0.599447 0.54571,1.632977 z m -0.76068,-0.223242 q -0.008,-0.624252 -0.3514,-0.996322 -0.339,-0.372071 -0.90124,-0.372071 -0.63665,0 -1.02112,0.359668 -0.38034,0.359669 -0.43822,1.012859 z"
  921 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  922 + id="path715" />
  923 + <path
  924 + d="m 179.4584,87.917841 h 0.87229 v 1.050065 h -0.87229 z"
  925 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
  926 + id="path717" />
  927 + </g>
  928 + </g>
  929 +</svg>
@@ -23,7 +23,7 @@ AC_PREREQ(2.61) @@ -23,7 +23,7 @@ AC_PREREQ(2.61)
23 23
24 dnl Initialise automake with the package name, version and 24 dnl Initialise automake with the package name, version and
25 dnl bug-reporting address. 25 dnl bug-reporting address.
26 -AC_INIT([pw3270], [5.4], [perry.werneck@gmail.com]) 26 +AC_INIT([pw3270], [5.5], [perry.werneck@gmail.com])
27 27
28 dnl Place auxilliary scripts here. 28 dnl Place auxilliary scripts here.
29 AC_CONFIG_AUX_DIR([scripts]) 29 AC_CONFIG_AUX_DIR([scripts])
@@ -40,6 +40,8 @@ AC_CONFIG_HEADER([src/include/config.h]) @@ -40,6 +40,8 @@ AC_CONFIG_HEADER([src/include/config.h])
40 dnl Initialise automake stuff. 40 dnl Initialise automake stuff.
41 AM_INIT_AUTOMAKE 41 AM_INIT_AUTOMAKE
42 42
  43 +LT_INIT
  44 +
43 dnl Set gettext version 45 dnl Set gettext version
44 AM_GNU_GETTEXT_VERSION([0.14]) 46 AM_GNU_GETTEXT_VERSION([0.14])
45 47
@@ -128,6 +130,14 @@ AC_SUBST(DLLPREFIX) @@ -128,6 +130,14 @@ AC_SUBST(DLLPREFIX)
128 AC_SUBST(DLL_LDFLAGS) 130 AC_SUBST(DLL_LDFLAGS)
129 131
130 dnl --------------------------------------------------------------------------- 132 dnl ---------------------------------------------------------------------------
  133 +dnl Check for headers
  134 +dnl ---------------------------------------------------------------------------
  135 +
  136 +AC_CHECK_HEADER(malloc.h, AC_DEFINE(HAVE_MALLOC_H,,[do we have malloc.h?]))
  137 +AC_CHECK_FUNC(localtime_r, AC_DEFINE(HAVE_LOCALTIME_R, [], [Do we have localtime_r?]) )
  138 +AC_CHECK_FUNC(strtok_r, AC_DEFINE(HAVE_STRTOK_R, [], [Do we have strtok_r?]) )
  139 +
  140 +dnl ---------------------------------------------------------------------------
131 dnl Check for other programs 141 dnl Check for other programs
132 dnl --------------------------------------------------------------------------- 142 dnl ---------------------------------------------------------------------------
133 143
@@ -163,8 +173,8 @@ AC_SUBST(PACKAGE_DESCRIPTION,&quot;IBM 3270 Terminal emulator&quot;) @@ -163,8 +173,8 @@ AC_SUBST(PACKAGE_DESCRIPTION,&quot;IBM 3270 Terminal emulator&quot;)
163 app_vrs_major=$(echo $VERSION | cut -d. -f1) 173 app_vrs_major=$(echo $VERSION | cut -d. -f1)
164 app_vrs_minor=$(echo $VERSION | cut -d. -f2) 174 app_vrs_minor=$(echo $VERSION | cut -d. -f2)
165 175
166 -AC_DEFINE_UNQUOTED(PACKAGE_MAJOR_VERSION, $app_vrs_major)  
167 -AC_DEFINE_UNQUOTED(PACKAGE_MINOR_VERSION, $app_vrs_minor) 176 +AC_DEFINE_UNQUOTED(PACKAGE_MAJOR_VERSION, $app_vrs_major, [The package major version])
  177 +AC_DEFINE_UNQUOTED(PACKAGE_MINOR_VERSION, $app_vrs_minor, [The package minor version])
168 178
169 AC_SUBST(PACKAGE_MAJOR_VERSION,$app_vrs_major) 179 AC_SUBST(PACKAGE_MAJOR_VERSION,$app_vrs_major)
170 AC_SUBST(PACKAGE_MINOR_VERSION,$app_vrs_minor) 180 AC_SUBST(PACKAGE_MINOR_VERSION,$app_vrs_minor)
@@ -174,9 +184,9 @@ AC_ARG_WITH([release], [AS_HELP_STRING([--with-release], [Set release])], [ app_ @@ -174,9 +184,9 @@ AC_ARG_WITH([release], [AS_HELP_STRING([--with-release], [Set release])], [ app_
174 app_rls_major=$(echo $app_cv_release.0.0 | cut -d. -f1) 184 app_rls_major=$(echo $app_cv_release.0.0 | cut -d. -f1)
175 app_rls_minor=$(echo $app_cv_release.0.0 | cut -d. -f2) 185 app_rls_minor=$(echo $app_cv_release.0.0 | cut -d. -f2)
176 186
177 -AC_DEFINE_UNQUOTED(PACKAGE_RELEASE, "$app_cv_release")  
178 -AC_DEFINE_UNQUOTED(PACKAGE_MAJOR_RELEASE, $app_rls_major)  
179 -AC_DEFINE_UNQUOTED(PACKAGE_MINOR_RELEASE, $app_rls_minor) 187 +AC_DEFINE_UNQUOTED(PACKAGE_RELEASE, "$app_cv_release",[The package release])
  188 +AC_DEFINE_UNQUOTED(PACKAGE_MAJOR_RELEASE, $app_rls_major,[The package major release])
  189 +AC_DEFINE_UNQUOTED(PACKAGE_MINOR_RELEASE, $app_rls_minor,[The package minor release])
180 190
181 AC_SUBST(PACKAGE_RELEASE,$app_cv_release) 191 AC_SUBST(PACKAGE_RELEASE,$app_cv_release)
182 AC_SUBST(PACKAGE_MAJOR_RELEASE,$app_rls_major) 192 AC_SUBST(PACKAGE_MAJOR_RELEASE,$app_rls_major)
@@ -187,14 +197,18 @@ dnl Set application id &amp; product name @@ -187,14 +197,18 @@ dnl Set application id &amp; product name
187 dnl --------------------------------------------------------------------------- 197 dnl ---------------------------------------------------------------------------
188 198
189 AC_ARG_WITH([product-name], [AS_HELP_STRING([--with-product-name], [Set product name])], [ app_cv_product="$withval" ],[ app_cv_product=`pkg-config --variable=product_name lib3270` ]) 199 AC_ARG_WITH([product-name], [AS_HELP_STRING([--with-product-name], [Set product name])], [ app_cv_product="$withval" ],[ app_cv_product=`pkg-config --variable=product_name lib3270` ])
190 -AC_DEFINE_UNQUOTED(PRODUCT_NAME, $app_cv_product) 200 +AC_DEFINE_UNQUOTED(PRODUCT_NAME, $app_cv_product,[The product name])
191 AC_SUBST(PRODUCT_NAME,$app_cv_product) 201 AC_SUBST(PRODUCT_NAME,$app_cv_product)
192 202
193 -AC_ARG_WITH([application-id], [AS_HELP_STRING([--application-id], [Set the application ID])], [ app_cv_application_id="$withval" ],[ app_cv_application_id="br.app.$app_cv_product" ]) 203 +AC_ARG_WITH([application-id], [AS_HELP_STRING([--application-id], [Set the application ID])], [ app_cv_application_id="$withval" ],[ app_cv_application_id=`pkg-config --variable=product_id lib3270`.terminal ])
194 204
195 -AC_DEFINE_UNQUOTED(APPLICATION_ID, $app_cv_application_id) 205 +AC_DEFINE_UNQUOTED(APPLICATION_ID, $app_cv_application_id,[The application ID])
196 AC_SUBST(APPLICATION_ID,$app_cv_application_id) 206 AC_SUBST(APPLICATION_ID,$app_cv_application_id)
197 207
  208 +AC_ARG_WITH([plugin-dir], [AS_HELP_STRING([--with-plugin-dir], [The application plugin dir])], [ app_cv_plugin_path="$withval" ],[ app_cv_plugin_path=`pkg-config --variable=plugin_path lib3270` ])
  209 +AC_DEFINE_UNQUOTED(PLUGIN_DIR, "$app_cv_plugin_path", [The product name])
  210 +AC_SUBST(PLUGIN_DIR,$app_cv_plugin_path)
  211 +
198 dnl --------------------------------------------------------------------------- 212 dnl ---------------------------------------------------------------------------
199 dnl Check for unstable version 213 dnl Check for unstable version
200 dnl --------------------------------------------------------------------------- 214 dnl ---------------------------------------------------------------------------
@@ -209,7 +223,7 @@ AC_ARG_ENABLE([unstable], @@ -209,7 +223,7 @@ AC_ARG_ENABLE([unstable],
209 ]) 223 ])
210 224
211 if test "$app_cv_unstable" == "yes"; then 225 if test "$app_cv_unstable" == "yes"; then
212 - AC_DEFINE(ENABLE_UNSTABLE_FEATURES) 226 + AC_DEFINE(ENABLE_UNSTABLE_FEATURES,,[Are we using the unstable features?])
213 AC_MSG_NOTICE([Enabling unstable features]) 227 AC_MSG_NOTICE([Enabling unstable features])
214 else 228 else
215 AC_MSG_NOTICE([Using only stable features]) 229 AC_MSG_NOTICE([Using only stable features])
@@ -220,13 +234,13 @@ dnl --------------------------------------------------------------------------- @@ -220,13 +234,13 @@ dnl ---------------------------------------------------------------------------
220 dnl Check for LIBV3270 234 dnl Check for LIBV3270
221 dnl --------------------------------------------------------------------------- 235 dnl ---------------------------------------------------------------------------
222 236
223 -PKG_CHECK_MODULES( [LIBV3270], [libv3270], AC_DEFINE(HAVE_LIBV3270), AC_MSG_ERROR([LIBV3270 not present.])) 237 +PKG_CHECK_MODULES( [LIBV3270], [libv3270], AC_DEFINE(HAVE_LIBV3270,,[Do we have libv3270?]), AC_MSG_ERROR([LIBV3270 not present.]))
224 238
225 AC_SUBST(LIBV3270_LIBS) 239 AC_SUBST(LIBV3270_LIBS)
226 AC_SUBST(LIBV3270_CFLAGS) 240 AC_SUBST(LIBV3270_CFLAGS)
227 241
228 AC_ARG_WITH([library-name], [AS_HELP_STRING([--with-library-name], [Set protocol library name])], [ app_cv_library="$withval" ],[ app_cv_library=`pkg-config --variable=library_name lib3270` ]) 242 AC_ARG_WITH([library-name], [AS_HELP_STRING([--with-library-name], [Set protocol library name])], [ app_cv_library="$withval" ],[ app_cv_library=`pkg-config --variable=library_name lib3270` ])
229 -AC_DEFINE_UNQUOTED(LIBRARY_NAME, $app_cv_library) 243 +AC_DEFINE_UNQUOTED(LIBRARY_NAME, $app_cv_library,[The tn3270 library name])
230 AC_SUBST(LIBRARY_NAME,$app_cv_library) 244 AC_SUBST(LIBRARY_NAME,$app_cv_library)
231 245
232 dnl --------------------------------------------------------------------------- 246 dnl ---------------------------------------------------------------------------
@@ -235,19 +249,7 @@ dnl --------------------------------------------------------------------------- @@ -235,19 +249,7 @@ dnl ---------------------------------------------------------------------------
235 249
236 GLIB_GSETTINGS 250 GLIB_GSETTINGS
237 251
238 -case "$host" in  
239 - *-mingw32|*-pc-msys)  
240 - PKG_CHECK_MODULES( [GTK], [gtk+-3.0 glib-2.0 gmodule-2.0], AC_DEFINE(HAVE_GTK), AC_MSG_ERROR([GTK not present.]))  
241 - ;;  
242 -  
243 - *-apple-darwin*)  
244 - PKG_CHECK_MODULES( [GTK], [gtk+-3.0 glib-2.0 gmodule-2.0], AC_DEFINE(HAVE_GTK), AC_MSG_ERROR([GTK not present.]))  
245 - ;;  
246 -  
247 - *)  
248 - PKG_CHECK_MODULES( [GTK], [gtk+-3.0 glib-2.0 gmodule-2.0], AC_DEFINE(HAVE_GTK), AC_MSG_ERROR([GTK not present.]))  
249 -  
250 -esac 252 +PKG_CHECK_MODULES( [GTK], [gtk+-3.0 glib-2.0 gmodule-2.0], AC_DEFINE(HAVE_GTK,1,[Do we have gtk?]), AC_MSG_ERROR([GTK not present.]))
251 253
252 AC_SUBST(GTK_LIBS) 254 AC_SUBST(GTK_LIBS)
253 AC_SUBST(GTK_CFLAGS) 255 AC_SUBST(GTK_CFLAGS)
flathub/br.app.pw3270.terminal.yml 0 → 100644
@@ -0,0 +1,43 @@ @@ -0,0 +1,43 @@
  1 +app-id: br.app.pw3270.terminal
  2 +runtime: org.gnome.Platform
  3 +runtime-version: '43'
  4 +sdk: org.gnome.Sdk
  5 +command: pw3270
  6 +finish-args:
  7 + - "--share=network"
  8 + - "--share=ipc"
  9 + - "--socket=fallback-x11"
  10 + - "--socket=wayland"
  11 +cleanup:
  12 + - "/include"
  13 + - "/lib/pkgconfig"
  14 + - "/man"
  15 + - "/share/doc"
  16 + - "/share/gtk-doc"
  17 + - "/share/man"
  18 + - "/share/pkgconfig"
  19 + - "*.la"
  20 + - "*.a"
  21 +modules:
  22 + - name: lib3270
  23 + buildsystem: autotools
  24 + config-opts:
  25 + - --with-product-id="br.app.pw3270"
  26 + sources:
  27 + - type: git
  28 + tag: "5.4"
  29 + url: https://github.com/PerryWerneck/lib3270
  30 + - name: libv3270
  31 + buildsystem: autotools
  32 + sources:
  33 + - type: git
  34 + tag: "5.4"
  35 + url: https://github.com/PerryWerneck/libv3270
  36 + - name: pw3270
  37 + buildsystem: autotools
  38 + sources:
  39 + - type: git
  40 + tag: "5.4"
  41 + url: https://github.com/PerryWerneck/pw3270
  42 +
  43 +
flathub/br.app.pw3270.yml
@@ -1,53 +0,0 @@ @@ -1,53 +0,0 @@
1 -app-id: br.app.pw3270  
2 -runtime: org.gnome.Platform  
3 -sdk: org.gnome.Sdk  
4 -command: pw3270  
5 -finish-args:  
6 - - "--share=network"  
7 - - "--share=ipc"  
8 - - "--socket=fallback-x11"  
9 - - "--socket=wayland"  
10 - - "--own-name=br.app.pw3270"  
11 -cleanup:  
12 - - "/include"  
13 - - "/lib/pkgconfig"  
14 - - "/man"  
15 - - "/share/doc"  
16 - - "/share/gtk-doc"  
17 - - "/share/man"  
18 - - "/share/pkgconfig"  
19 - - "*.la"  
20 - - "*.a"  
21 -modules:  
22 - - name: lib3270  
23 - buildsystem: simple  
24 - build-commands:  
25 - - NOCONFIGURE=1 ./autogen.sh  
26 - - ./configure --prefix=/app  
27 - - make all  
28 - - make install  
29 - sources:  
30 - - type: git  
31 - url: https://github.com/PerryWerneck/lib3270  
32 - - name: libv3270  
33 - buildsystem: simple  
34 - build-commands:  
35 - - NOCONFIGURE=1 ./autogen.sh  
36 - - ./configure --prefix=/app PKG_CONFIG_PATH=/app/lib/pkgconfig CFLAGS=-I/app/include LDFLAGS=-L/app/lib  
37 - - make all  
38 - - make install  
39 - sources:  
40 - - type: git  
41 - url: https://github.com/PerryWerneck/libv3270  
42 - - name: pw3270  
43 - buildsystem: simple  
44 - build-commands:  
45 - - NOCONFIGURE=1 ./autogen.sh  
46 - - ./configure --prefix=/app PKG_CONFIG_PATH=/app/lib/pkgconfig CFLAGS=-I/app/usr/include LDFLAGS=-L/app/lib  
47 - - make all  
48 - - make install  
49 - sources:  
50 - - type: git  
51 - url: https://github.com/PerryWerneck/pw3270  
52 -  
53 -  
flatpak/br.app.pw3270.yml 0 → 100644
@@ -0,0 +1,53 @@ @@ -0,0 +1,53 @@
  1 +app-id: br.app.pw3270
  2 +runtime: org.gnome.Platform
  3 +sdk: org.gnome.Sdk
  4 +command: pw3270
  5 +finish-args:
  6 + - "--share=network"
  7 + - "--share=ipc"
  8 + - "--socket=fallback-x11"
  9 + - "--socket=wayland"
  10 + - "--own-name=br.app.pw3270"
  11 +cleanup:
  12 + - "/include"
  13 + - "/lib/pkgconfig"
  14 + - "/man"
  15 + - "/share/doc"
  16 + - "/share/gtk-doc"
  17 + - "/share/man"
  18 + - "/share/pkgconfig"
  19 + - "*.la"
  20 + - "*.a"
  21 +modules:
  22 + - name: lib3270
  23 + buildsystem: simple
  24 + build-commands:
  25 + - NOCONFIGURE=1 ./autogen.sh
  26 + - ./configure --prefix=/app --with-product-id="br.app.pw3270"
  27 + - make all
  28 + - make install
  29 + sources:
  30 + - type: git
  31 + url: https://github.com/PerryWerneck/lib3270
  32 + - name: libv3270
  33 + buildsystem: simple
  34 + build-commands:
  35 + - NOCONFIGURE=1 ./autogen.sh
  36 + - ./configure --prefix=/app PKG_CONFIG_PATH=/app/lib/pkgconfig CFLAGS=-I/app/include LDFLAGS=-L/app/lib
  37 + - make all
  38 + - make install
  39 + sources:
  40 + - type: git
  41 + url: https://github.com/PerryWerneck/libv3270
  42 + - name: pw3270
  43 + buildsystem: simple
  44 + build-commands:
  45 + - NOCONFIGURE=1 ./autogen.sh
  46 + - ./configure --prefix=/app PKG_CONFIG_PATH=/app/lib/pkgconfig CFLAGS=-I/app/usr/include LDFLAGS=-L/app/lib
  47 + - make all
  48 + - make install
  49 + sources:
  50 + - type: git
  51 + url: https://github.com/PerryWerneck/pw3270
  52 +
  53 +
locale/pt_BR.po
@@ -5,7 +5,7 @@ msgid &quot;&quot; @@ -5,7 +5,7 @@ msgid &quot;&quot;
5 msgstr "" 5 msgstr ""
6 "Project-Id-Version: pw3270 5.0\n" 6 "Project-Id-Version: pw3270 5.0\n"
7 "Report-Msgid-Bugs-To: \n" 7 "Report-Msgid-Bugs-To: \n"
8 -"POT-Creation-Date: 2023-01-11 03:29-0300\n" 8 +"POT-Creation-Date: 2023-01-18 12:42-0300\n"
9 "PO-Revision-Date: 2021-12-23 01:36-0300\n" 9 "PO-Revision-Date: 2021-12-23 01:36-0300\n"
10 "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n" 10 "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n"
11 "Language-Team: Brazilian Portuguese <perry.werneck@gmail.com>\n" 11 "Language-Team: Brazilian Portuguese <perry.werneck@gmail.com>\n"
@@ -19,21 +19,21 @@ msgstr &quot;&quot; @@ -19,21 +19,21 @@ msgstr &quot;&quot;
19 "Plural-Forms: nplurals=2; plural=(n > 1)\n" 19 "Plural-Forms: nplurals=2; plural=(n > 1)\n"
20 "X-Generator: Gtranslator 3.38.0\n" 20 "X-Generator: Gtranslator 3.38.0\n"
21 21
22 -#: src/objects/application/application.c:211 22 +#: src/objects/application/application.c:214
23 #, c-format 23 #, c-format
24 msgid "\"%s\" is not a valid user interface name" 24 msgid "\"%s\" is not a valid user interface name"
25 msgstr "\"%s\" não é um nome válido para interface de usuário" 25 msgstr "\"%s\" não é um nome válido para interface de usuário"
26 26
27 -#: src/objects/application/actions/about.c:133 27 +#: src/objects/application/actions/about.c:118
28 #, c-format 28 #, c-format
29 msgid "%s for %s." 29 msgid "%s for %s."
30 msgstr "%s para %s" 30 msgstr "%s para %s"
31 31
32 -#: src/objects/application/actions/about.c:140 32 +#: src/objects/application/actions/about.c:125
33 msgid "32 bits Linux" 33 msgid "32 bits Linux"
34 msgstr "Linux 32 bits" 34 msgstr "Linux 32 bits"
35 35
36 -#: src/objects/application/actions/about.c:138 36 +#: src/objects/application/actions/about.c:123
37 msgid "32 bits Windows" 37 msgid "32 bits Windows"
38 msgstr "Windows 32 bits" 38 msgstr "Windows 32 bits"
39 39
@@ -42,24 +42,24 @@ msgstr &quot;Windows 32 bits&quot; @@ -42,24 +42,24 @@ msgstr &quot;Windows 32 bits&quot;
42 msgid "3270 session files" 42 msgid "3270 session files"
43 msgstr "Arquivos de sessão TN3270" 43 msgstr "Arquivos de sessão TN3270"
44 44
45 -#: src/objects/application/actions/about.c:142 45 +#: src/objects/application/actions/about.c:127
46 msgid "64 bits Linux" 46 msgid "64 bits Linux"
47 msgstr "Linux 64 bits" 47 msgstr "Linux 64 bits"
48 48
49 -#: src/objects/application/actions/about.c:136 49 +#: src/objects/application/actions/about.c:121
50 msgid "64 bits Windows" 50 msgid "64 bits Windows"
51 msgstr "Windows 64 bits" 51 msgstr "Windows 64 bits"
52 52
53 -#: src/objects/toolbar/settings.c:215 53 +#: src/objects/toolbar/settings.c:214
54 msgid "" 54 msgid ""
55 "<small><b>The toolbar position only takes effect after restart</b></small>" 55 "<small><b>The toolbar position only takes effect after restart</b></small>"
56 msgstr "" 56 msgstr ""
57 "<small><b>Alterações na posição da barra de ferramentas só tem efeito apos " 57 "<small><b>Alterações na posição da barra de ferramentas só tem efeito apos "
58 "reinício da aplicação</b></small>" 58 "reinício da aplicação</b></small>"
59 59
60 -#: src/objects/application/actions/about.c:232 ui/linux.ui.xml:40  
61 -#: ui/linux.ui.xml:553 ui/macos.ui.xml:40 ui/macos.ui.xml:553  
62 -#: ui/windows.ui.xml:40 ui/windows.ui.xml:553 60 +#: src/objects/application/actions/about.c:217 ui/windows.ui.xml:40
  61 +#: ui/windows.ui.xml:553 ui/macos.ui.xml:40 ui/macos.ui.xml:553
  62 +#: ui/linux.ui.xml:40 ui/linux.ui.xml:553
63 msgid "About PW3270" 63 msgid "About PW3270"
64 msgstr "Sobre o PW3270" 64 msgstr "Sobre o PW3270"
65 65
@@ -67,13 +67,13 @@ msgstr &quot;Sobre o PW3270&quot; @@ -67,13 +67,13 @@ msgstr &quot;Sobre o PW3270&quot;
67 msgid "Action Name" 67 msgid "Action Name"
68 msgstr "Nome da ação" 68 msgstr "Nome da ação"
69 69
70 -#: src/objects/window/window.c:233 70 +#: src/objects/window/window.c:205
71 msgid "Action Names" 71 msgid "Action Names"
72 msgstr "Nome das ações" 72 msgstr "Nome das ações"
73 73
74 -#: ui/linux.ui.xml:525 ui/linux.ui.xml:917 ui/linux.ui.xml:1032  
75 -#: ui/macos.ui.xml:525 ui/macos.ui.xml:917 ui/macos.ui.xml:1032  
76 #: ui/windows.ui.xml:525 ui/windows.ui.xml:917 ui/windows.ui.xml:1032 74 #: ui/windows.ui.xml:525 ui/windows.ui.xml:917 ui/windows.ui.xml:1032
  75 +#: ui/macos.ui.xml:525 ui/macos.ui.xml:917 ui/macos.ui.xml:1032
  76 +#: ui/linux.ui.xml:525 ui/linux.ui.xml:917 ui/linux.ui.xml:1032
77 msgid "Alert sound" 77 msgid "Alert sound"
78 msgstr "Aviso sonoro" 78 msgstr "Aviso sonoro"
79 79
@@ -81,26 +81,26 @@ msgstr &quot;Aviso sonoro&quot; @@ -81,26 +81,26 @@ msgstr &quot;Aviso sonoro&quot;
81 msgid "All files" 81 msgid "All files"
82 msgstr "Todos os arquivos" 82 msgstr "Todos os arquivos"
83 83
84 -#: ui/linux.ui.xml:252 ui/linux.ui.xml:691 ui/macos.ui.xml:252  
85 -#: ui/macos.ui.xml:691 ui/windows.ui.xml:252 ui/windows.ui.xml:691 84 +#: ui/windows.ui.xml:252 ui/windows.ui.xml:691 ui/macos.ui.xml:252
  85 +#: ui/macos.ui.xml:691 ui/linux.ui.xml:252 ui/linux.ui.xml:691
86 msgid "Append to copy" 86 msgid "Append to copy"
87 msgstr "Adicionar à cópia" 87 msgstr "Adicionar à cópia"
88 88
89 -#: src/objects/application/actions/about.c:175 89 +#: src/objects/application/actions/about.c:160
90 msgid "Apple version" 90 msgid "Apple version"
91 msgstr "Versão Apple" 91 msgstr "Versão Apple"
92 92
93 -#: ui/linux.ui.xml:385 ui/linux.ui.xml:665 ui/macos.ui.xml:385  
94 -#: ui/macos.ui.xml:665 ui/windows.ui.xml:385 ui/windows.ui.xml:665 93 +#: ui/windows.ui.xml:385 ui/windows.ui.xml:665 ui/macos.ui.xml:385
  94 +#: ui/macos.ui.xml:665 ui/linux.ui.xml:385 ui/linux.ui.xml:665
95 msgid "Application" 95 msgid "Application"
96 msgstr "Aplicação" 96 msgstr "Aplicação"
97 97
98 -#: src/objects/window/header-settings.c:125 98 +#: src/objects/window/header-settings.c:93
99 msgid "Application menu" 99 msgid "Application menu"
100 msgstr "Menu da aplicação" 100 msgstr "Menu da aplicação"
101 101
102 -#: src/objects/application/actions/preferences.c:76 ui/linux.ui.xml:84  
103 -#: ui/macos.ui.xml:84 ui/windows.ui.xml:84 102 +#: src/objects/application/actions/preferences.c:76 ui/windows.ui.xml:84
  103 +#: ui/macos.ui.xml:84 ui/linux.ui.xml:84
104 msgid "Application preferences" 104 msgid "Application preferences"
105 msgstr "Preferências da aplicação" 105 msgstr "Preferências da aplicação"
106 106
@@ -108,28 +108,28 @@ msgstr &quot;Preferências da aplicação&quot; @@ -108,28 +108,28 @@ msgstr &quot;Preferências da aplicação&quot;
108 msgid "Apply" 108 msgid "Apply"
109 msgstr "Aplicar" 109 msgstr "Aplicar"
110 110
111 -#: ui/linux.ui.xml:500 ui/macos.ui.xml:500 ui/windows.ui.xml:500 111 +#: ui/windows.ui.xml:500 ui/macos.ui.xml:500 ui/linux.ui.xml:500
112 msgid "Auto-Reconnect" 112 msgid "Auto-Reconnect"
113 msgstr "Reconectar automaticamente" 113 msgstr "Reconectar automaticamente"
114 114
115 -#: src/objects/toolbar/settings.c:119 src/objects/settings/actionview.c:73 115 +#: src/objects/toolbar/settings.c:118 src/objects/settings/actionview.c:73
116 msgid "Available" 116 msgid "Available"
117 msgstr "Disponível" 117 msgstr "Disponível"
118 118
119 -#: src/objects/application/actions/about.c:178 119 +#: src/objects/application/actions/about.c:163
120 msgid "Based on X3270 from" 120 msgid "Based on X3270 from"
121 msgstr "Baseado no X3270 por" 121 msgstr "Baseado no X3270 por"
122 122
123 -#: ui/linux.ui.xml:490 ui/linux.ui.xml:946 ui/macos.ui.xml:490  
124 -#: ui/macos.ui.xml:946 ui/windows.ui.xml:490 ui/windows.ui.xml:946 123 +#: ui/windows.ui.xml:490 ui/windows.ui.xml:946 ui/macos.ui.xml:490
  124 +#: ui/macos.ui.xml:946 ui/linux.ui.xml:490 ui/linux.ui.xml:946
125 msgid "Blank Fill" 125 msgid "Blank Fill"
126 msgstr "Completar com espaços" 126 msgstr "Completar com espaços"
127 127
128 -#: ui/linux.ui.xml:455 ui/macos.ui.xml:455 ui/windows.ui.xml:455 128 +#: ui/windows.ui.xml:455 ui/macos.ui.xml:455 ui/linux.ui.xml:455
129 msgid "Blinking Cursor" 129 msgid "Blinking Cursor"
130 msgstr "Cursor piscante" 130 msgstr "Cursor piscante"
131 131
132 -#: ui/linux.ui.xml:505 ui/macos.ui.xml:505 ui/windows.ui.xml:505 132 +#: ui/windows.ui.xml:505 ui/macos.ui.xml:505 ui/linux.ui.xml:505
133 msgid "Bold" 133 msgid "Bold"
134 msgstr "Negrito" 134 msgstr "Negrito"
135 135
@@ -167,7 +167,7 @@ msgstr &quot;_Cancelar&quot; @@ -167,7 +167,7 @@ msgstr &quot;_Cancelar&quot;
167 msgid "Change the application preferences" 167 msgid "Change the application preferences"
168 msgstr "Modificar preferências da aplicação" 168 msgstr "Modificar preferências da aplicação"
169 169
170 -#: src/objects/window/header-settings.c:96 170 +#: src/objects/window/header-settings.c:64
171 msgid "Change the position of the title bar icons" 171 msgid "Change the position of the title bar icons"
172 msgstr "Modificar posição dos ícones da barra de título" 172 msgstr "Modificar posição dos ícones da barra de título"
173 173
@@ -175,20 +175,20 @@ msgstr &quot;Modificar posição dos ícones da barra de título&quot; @@ -175,20 +175,20 @@ msgstr &quot;Modificar posição dos ícones da barra de título&quot;
175 msgid "Change the preferences for the active session" 175 msgid "Change the preferences for the active session"
176 msgstr "Modificar preferências da sessão ativa" 176 msgstr "Modificar preferências da sessão ativa"
177 177
178 -#: ui/linux.ui.xml:305 ui/linux.ui.xml:725 ui/linux.ui.xml:867  
179 -#: ui/macos.ui.xml:305 ui/macos.ui.xml:725 ui/macos.ui.xml:867  
180 #: ui/windows.ui.xml:305 ui/windows.ui.xml:725 ui/windows.ui.xml:867 178 #: ui/windows.ui.xml:305 ui/windows.ui.xml:725 ui/windows.ui.xml:867
  179 +#: ui/macos.ui.xml:305 ui/macos.ui.xml:725 ui/macos.ui.xml:867
  180 +#: ui/linux.ui.xml:305 ui/linux.ui.xml:725 ui/linux.ui.xml:867
181 msgid "Clear" 181 msgid "Clear"
182 msgstr "Limpar" 182 msgstr "Limpar"
183 183
184 -#: ui/linux.ui.xml:400 ui/macos.ui.xml:400 ui/windows.ui.xml:400 184 +#: ui/windows.ui.xml:400 ui/macos.ui.xml:400 ui/linux.ui.xml:400
185 msgid "Clipboard" 185 msgid "Clipboard"
186 msgstr "Área de transferência" 186 msgstr "Área de transferência"
187 187
188 -#: ui/linux.ui.xml:150 ui/linux.ui.xml:187 ui/linux.ui.xml:617  
189 -#: ui/linux.ui.xml:654 ui/macos.ui.xml:150 ui/macos.ui.xml:187  
190 -#: ui/macos.ui.xml:617 ui/macos.ui.xml:654 ui/windows.ui.xml:150  
191 -#: ui/windows.ui.xml:187 ui/windows.ui.xml:617 ui/windows.ui.xml:654 188 +#: ui/windows.ui.xml:150 ui/windows.ui.xml:187 ui/windows.ui.xml:617
  189 +#: ui/windows.ui.xml:654 ui/macos.ui.xml:150 ui/macos.ui.xml:187
  190 +#: ui/macos.ui.xml:617 ui/macos.ui.xml:654 ui/linux.ui.xml:150
  191 +#: ui/linux.ui.xml:187 ui/linux.ui.xml:617 ui/linux.ui.xml:654
192 msgid "Clipboard contents" 192 msgid "Clipboard contents"
193 msgstr "Conteúdo da área de transferência" 193 msgstr "Conteúdo da área de transferência"
194 194
@@ -196,15 +196,15 @@ msgstr &quot;Conteúdo da área de transferência&quot; @@ -196,15 +196,15 @@ msgstr &quot;Conteúdo da área de transferência&quot;
196 msgid "Close all windows and exit application" 196 msgid "Close all windows and exit application"
197 msgstr "Fecha todas as janelas e encerra a aplicação" 197 msgstr "Fecha todas as janelas e encerra a aplicação"
198 198
199 -#: src/objects/window/actions/close.c:61 199 +#: src/objects/window/actions/close.c:52
200 msgid "Close the window" 200 msgid "Close the window"
201 msgstr "Fechar a janela" 201 msgstr "Fechar a janela"
202 202
203 -#: src/objects/window/actions/close.c:60 ui/linux.ui.xml:217  
204 -#: ui/linux.ui.xml:813 ui/linux.ui.xml:1011 ui/linux.ui.xml:1118 203 +#: src/objects/window/actions/close.c:51 ui/windows.ui.xml:217
  204 +#: ui/windows.ui.xml:813 ui/windows.ui.xml:1011 ui/windows.ui.xml:1118
205 #: ui/macos.ui.xml:217 ui/macos.ui.xml:813 ui/macos.ui.xml:1011 205 #: ui/macos.ui.xml:217 ui/macos.ui.xml:813 ui/macos.ui.xml:1011
206 -#: ui/macos.ui.xml:1118 ui/windows.ui.xml:217 ui/windows.ui.xml:813  
207 -#: ui/windows.ui.xml:1011 ui/windows.ui.xml:1118 206 +#: ui/macos.ui.xml:1118 ui/linux.ui.xml:217 ui/linux.ui.xml:813
  207 +#: ui/linux.ui.xml:1011 ui/linux.ui.xml:1118
208 msgid "Close window" 208 msgid "Close window"
209 msgstr "Fechar janela" 209 msgstr "Fechar janela"
210 210
@@ -216,7 +216,7 @@ msgstr &quot;Comentário&quot; @@ -216,7 +216,7 @@ msgstr &quot;Comentário&quot;
216 msgid "Connect" 216 msgid "Connect"
217 msgstr "Conectar" 217 msgstr "Conectar"
218 218
219 -#: ui/linux.ui.xml:450 ui/macos.ui.xml:450 ui/windows.ui.xml:450 219 +#: ui/windows.ui.xml:450 ui/macos.ui.xml:450 ui/linux.ui.xml:450
220 msgid "Connect on startup" 220 msgid "Connect on startup"
221 msgstr "Conectar ao iniciar" 221 msgstr "Conectar ao iniciar"
222 222
@@ -224,38 +224,38 @@ msgstr &quot;Conectar ao iniciar&quot; @@ -224,38 +224,38 @@ msgstr &quot;Conectar ao iniciar&quot;
224 msgid "Connect to host" 224 msgid "Connect to host"
225 msgstr "Conectar ao servidor" 225 msgstr "Conectar ao servidor"
226 226
227 -#: src/objects/window/page.c:218 src/objects/window/window.c:808 227 +#: src/objects/window/window.c:778 src/objects/window/page.c:218
228 msgid "Connected to host" 228 msgid "Connected to host"
229 msgstr "Conectado no servidor" 229 msgstr "Conectado no servidor"
230 230
231 -#: src/objects/application/actions/about.c:176 231 +#: src/objects/application/actions/about.c:161
232 msgid "Contributors" 232 msgid "Contributors"
233 msgstr "Contribuidores" 233 msgstr "Contribuidores"
234 234
235 -#: ui/linux.ui.xml:237 ui/linux.ui.xml:686 ui/macos.ui.xml:237  
236 -#: ui/macos.ui.xml:686 ui/windows.ui.xml:237 ui/windows.ui.xml:686 235 +#: ui/windows.ui.xml:237 ui/windows.ui.xml:686 ui/macos.ui.xml:237
  236 +#: ui/macos.ui.xml:686 ui/linux.ui.xml:237 ui/linux.ui.xml:686
237 msgid "Copy" 237 msgid "Copy"
238 msgstr "Copiar" 238 msgstr "Copiar"
239 239
240 -#: ui/linux.ui.xml:706 ui/macos.ui.xml:706 ui/windows.ui.xml:706 240 +#: ui/windows.ui.xml:706 ui/macos.ui.xml:706 ui/linux.ui.xml:706
241 msgid "Copy as HTML" 241 msgid "Copy as HTML"
242 msgstr "Copiar como HTML" 242 msgstr "Copiar como HTML"
243 243
244 -#: ui/linux.ui.xml:711 ui/macos.ui.xml:711 ui/windows.ui.xml:711 244 +#: ui/windows.ui.xml:711 ui/macos.ui.xml:711 ui/linux.ui.xml:711
245 msgid "Copy as image" 245 msgid "Copy as image"
246 msgstr "Copiar como imagem" 246 msgstr "Copiar como imagem"
247 247
248 -#: ui/linux.ui.xml:247 ui/linux.ui.xml:701 ui/macos.ui.xml:247  
249 -#: ui/macos.ui.xml:701 ui/windows.ui.xml:247 ui/windows.ui.xml:701 248 +#: ui/windows.ui.xml:247 ui/windows.ui.xml:701 ui/macos.ui.xml:247
  249 +#: ui/macos.ui.xml:701 ui/linux.ui.xml:247 ui/linux.ui.xml:701
250 msgid "Copy as table" 250 msgid "Copy as table"
251 msgstr "Copiar como tabela" 251 msgstr "Copiar como tabela"
252 252
253 -#: ui/linux.ui.xml:242 ui/linux.ui.xml:696 ui/macos.ui.xml:242  
254 -#: ui/macos.ui.xml:696 ui/windows.ui.xml:242 ui/windows.ui.xml:696 253 +#: ui/windows.ui.xml:242 ui/windows.ui.xml:696 ui/macos.ui.xml:242
  254 +#: ui/macos.ui.xml:696 ui/linux.ui.xml:242 ui/linux.ui.xml:696
255 msgid "Copy as text" 255 msgid "Copy as text"
256 msgstr "Copiar como texto" 256 msgstr "Copiar como texto"
257 257
258 -#: src/objects/application/actions/about.c:182 258 +#: src/objects/application/actions/about.c:167
259 msgid "Copyright © 2008 Banco do Brasil S.A." 259 msgid "Copyright © 2008 Banco do Brasil S.A."
260 msgstr "Copyright © 2008 Banco do Brasil S.A." 260 msgstr "Copyright © 2008 Banco do Brasil S.A."
261 261
@@ -265,33 +265,33 @@ msgstr &quot;Copyright © 2008 Banco do Brasil S.A.&quot; @@ -265,33 +265,33 @@ msgstr &quot;Copyright © 2008 Banco do Brasil S.A.&quot;
265 msgid "Create shortcut for the current session" 265 msgid "Create shortcut for the current session"
266 msgstr "Criar atalho para a sessão atual." 266 msgstr "Criar atalho para a sessão atual."
267 267
268 -#: ui/linux.ui.xml:475 ui/linux.ui.xml:902 ui/macos.ui.xml:475  
269 -#: ui/macos.ui.xml:902 ui/windows.ui.xml:475 ui/windows.ui.xml:902 268 +#: ui/windows.ui.xml:475 ui/windows.ui.xml:902 ui/macos.ui.xml:475
  269 +#: ui/macos.ui.xml:902 ui/linux.ui.xml:475 ui/linux.ui.xml:902
270 msgid "Cross hair cursor" 270 msgid "Cross hair cursor"
271 msgstr "Cursor mira" 271 msgstr "Cursor mira"
272 272
273 -#: ui/linux.ui.xml:177 ui/linux.ui.xml:644 ui/macos.ui.xml:177  
274 -#: ui/macos.ui.xml:644 ui/windows.ui.xml:177 ui/windows.ui.xml:644 273 +#: ui/windows.ui.xml:177 ui/windows.ui.xml:644 ui/macos.ui.xml:177
  274 +#: ui/macos.ui.xml:644 ui/linux.ui.xml:177 ui/linux.ui.xml:644
275 msgid "Current Screen" 275 msgid "Current Screen"
276 msgstr "Tela atual" 276 msgstr "Tela atual"
277 277
278 -#: ui/linux.ui.xml:140 ui/linux.ui.xml:607 ui/macos.ui.xml:140  
279 -#: ui/macos.ui.xml:607 ui/windows.ui.xml:140 ui/windows.ui.xml:607 278 +#: ui/windows.ui.xml:140 ui/windows.ui.xml:607 ui/macos.ui.xml:140
  279 +#: ui/macos.ui.xml:607 ui/linux.ui.xml:140 ui/linux.ui.xml:607
280 msgid "Current screen" 280 msgid "Current screen"
281 msgstr "Tela atual" 281 msgstr "Tela atual"
282 282
283 -#: ui/linux.ui.xml:670 ui/macos.ui.xml:670 ui/windows.ui.xml:670 283 +#: ui/windows.ui.xml:670 ui/macos.ui.xml:670 ui/linux.ui.xml:670
284 msgid "Current session" 284 msgid "Current session"
285 msgstr "Sessão atual" 285 msgstr "Sessão atual"
286 286
287 -#: ui/linux.ui.xml:257 ui/linux.ui.xml:716 ui/macos.ui.xml:257  
288 -#: ui/macos.ui.xml:716 ui/windows.ui.xml:257 ui/windows.ui.xml:716 287 +#: ui/windows.ui.xml:257 ui/windows.ui.xml:716 ui/macos.ui.xml:257
  288 +#: ui/macos.ui.xml:716 ui/linux.ui.xml:257 ui/linux.ui.xml:716
289 msgid "Cut" 289 msgid "Cut"
290 msgstr "Recortar" 290 msgstr "Recortar"
291 291
292 -#: ui/linux.ui.xml:315 ui/linux.ui.xml:735 ui/linux.ui.xml:877  
293 -#: ui/macos.ui.xml:315 ui/macos.ui.xml:735 ui/macos.ui.xml:877  
294 #: ui/windows.ui.xml:315 ui/windows.ui.xml:735 ui/windows.ui.xml:877 292 #: ui/windows.ui.xml:315 ui/windows.ui.xml:735 ui/windows.ui.xml:877
  293 +#: ui/macos.ui.xml:315 ui/macos.ui.xml:735 ui/macos.ui.xml:877
  294 +#: ui/linux.ui.xml:315 ui/linux.ui.xml:735 ui/linux.ui.xml:877
295 msgid "Delete Field" 295 msgid "Delete Field"
296 msgstr "Apagar campo" 296 msgstr "Apagar campo"
297 297
@@ -299,19 +299,19 @@ msgstr &quot;Apagar campo&quot; @@ -299,19 +299,19 @@ msgstr &quot;Apagar campo&quot;
299 msgid "Description" 299 msgid "Description"
300 msgstr "Descrição" 300 msgstr "Descrição"
301 301
302 -#: ui/linux.ui.xml:808 ui/linux.ui.xml:1006 ui/macos.ui.xml:808  
303 -#: ui/macos.ui.xml:1006 ui/windows.ui.xml:808 ui/windows.ui.xml:1006 302 +#: ui/windows.ui.xml:808 ui/windows.ui.xml:1006 ui/macos.ui.xml:808
  303 +#: ui/macos.ui.xml:1006 ui/linux.ui.xml:808 ui/linux.ui.xml:1006
304 msgid "Disconnect" 304 msgid "Disconnect"
305 msgstr "Desconectar" 305 msgstr "Desconectar"
306 306
307 -#: src/objects/window/page.c:207 src/objects/window/window.c:808  
308 -#: src/objects/window/window.c:835 307 +#: src/objects/window/window.c:778 src/objects/window/window.c:805
  308 +#: src/objects/window/page.c:207
309 msgid "Disconnected from host" 309 msgid "Disconnected from host"
310 msgstr "Desconectado do servidor" 310 msgstr "Desconectado do servidor"
311 311
312 -#: ui/linux.ui.xml:540 ui/linux.ui.xml:929 ui/linux.ui.xml:1045  
313 -#: ui/macos.ui.xml:540 ui/macos.ui.xml:929 ui/macos.ui.xml:1045  
314 #: ui/windows.ui.xml:540 ui/windows.ui.xml:929 ui/windows.ui.xml:1045 312 #: ui/windows.ui.xml:540 ui/windows.ui.xml:929 ui/windows.ui.xml:1045
  313 +#: ui/macos.ui.xml:540 ui/macos.ui.xml:929 ui/macos.ui.xml:1045
  314 +#: ui/linux.ui.xml:540 ui/linux.ui.xml:929 ui/linux.ui.xml:1045
315 msgid "Dynamic font spacing" 315 msgid "Dynamic font spacing"
316 msgstr "Espaçamento dinâmico" 316 msgstr "Espaçamento dinâmico"
317 317
@@ -339,21 +339,21 @@ msgstr &quot;Habilitado&quot; @@ -339,21 +339,21 @@ msgstr &quot;Habilitado&quot;
339 msgid "End" 339 msgid "End"
340 msgstr "Final" 340 msgstr "Final"
341 341
342 -#: ui/linux.ui.xml:310 ui/linux.ui.xml:730 ui/linux.ui.xml:872  
343 -#: ui/macos.ui.xml:310 ui/macos.ui.xml:730 ui/macos.ui.xml:872  
344 #: ui/windows.ui.xml:310 ui/windows.ui.xml:730 ui/windows.ui.xml:872 342 #: ui/windows.ui.xml:310 ui/windows.ui.xml:730 ui/windows.ui.xml:872
  343 +#: ui/macos.ui.xml:310 ui/macos.ui.xml:730 ui/macos.ui.xml:872
  344 +#: ui/linux.ui.xml:310 ui/linux.ui.xml:730 ui/linux.ui.xml:872
345 msgid "Erase input" 345 msgid "Erase input"
346 msgstr "Apagar campos" 346 msgstr "Apagar campos"
347 347
348 -#: ui/linux.ui.xml:320 ui/linux.ui.xml:740 ui/linux.ui.xml:882  
349 -#: ui/macos.ui.xml:320 ui/macos.ui.xml:740 ui/macos.ui.xml:882  
350 #: ui/windows.ui.xml:320 ui/windows.ui.xml:740 ui/windows.ui.xml:882 348 #: ui/windows.ui.xml:320 ui/windows.ui.xml:740 ui/windows.ui.xml:882
  349 +#: ui/macos.ui.xml:320 ui/macos.ui.xml:740 ui/macos.ui.xml:882
  350 +#: ui/linux.ui.xml:320 ui/linux.ui.xml:740 ui/linux.ui.xml:882
351 msgid "Erase to end of field" 351 msgid "Erase to end of field"
352 msgstr "Apagar até o final do campo" 352 msgstr "Apagar até o final do campo"
353 353
354 -#: ui/linux.ui.xml:325 ui/linux.ui.xml:745 ui/linux.ui.xml:887  
355 -#: ui/macos.ui.xml:325 ui/macos.ui.xml:745 ui/macos.ui.xml:887  
356 #: ui/windows.ui.xml:325 ui/windows.ui.xml:745 ui/windows.ui.xml:887 354 #: ui/windows.ui.xml:325 ui/windows.ui.xml:745 ui/windows.ui.xml:887
  355 +#: ui/macos.ui.xml:325 ui/macos.ui.xml:745 ui/macos.ui.xml:887
  356 +#: ui/linux.ui.xml:325 ui/linux.ui.xml:745 ui/linux.ui.xml:887
357 msgid "Erase to end of line" 357 msgid "Erase to end of line"
358 msgstr "Apagar até o final da linha" 358 msgstr "Apagar até o final da linha"
359 359
@@ -361,7 +361,7 @@ msgstr &quot;Apagar até o final da linha&quot; @@ -361,7 +361,7 @@ msgstr &quot;Apagar até o final da linha&quot;
361 msgid "Error starting session" 361 msgid "Error starting session"
362 msgstr "Erro iniciando sessão" 362 msgstr "Erro iniciando sessão"
363 363
364 -#: ui/linux.ui.xml:353 ui/macos.ui.xml:353 ui/windows.ui.xml:353 364 +#: ui/windows.ui.xml:353 ui/macos.ui.xml:353 ui/linux.ui.xml:353
365 msgid "Field attributes" 365 msgid "Field attributes"
366 msgstr "Atributos de campo" 366 msgstr "Atributos de campo"
367 367
@@ -369,13 +369,13 @@ msgstr &quot;Atributos de campo&quot; @@ -369,13 +369,13 @@ msgstr &quot;Atributos de campo&quot;
369 msgid "File for session preferences" 369 msgid "File for session preferences"
370 msgstr "Arquivo para preferências da sessão" 370 msgstr "Arquivo para preferências da sessão"
371 371
372 -#: ui/linux.ui.xml:470 ui/macos.ui.xml:470 ui/windows.ui.xml:470 372 +#: ui/windows.ui.xml:470 ui/macos.ui.xml:470 ui/linux.ui.xml:470
373 msgid "Full Screen" 373 msgid "Full Screen"
374 msgstr "Tela cheia" 374 msgstr "Tela cheia"
375 375
376 -#: ui/linux.ui.xml:779 ui/linux.ui.xml:955 ui/linux.ui.xml:1050  
377 -#: ui/macos.ui.xml:779 ui/macos.ui.xml:955 ui/macos.ui.xml:1050  
378 #: ui/windows.ui.xml:779 ui/windows.ui.xml:955 ui/windows.ui.xml:1050 376 #: ui/windows.ui.xml:779 ui/windows.ui.xml:955 ui/windows.ui.xml:1050
  377 +#: ui/macos.ui.xml:779 ui/macos.ui.xml:955 ui/macos.ui.xml:1050
  378 +#: ui/linux.ui.xml:779 ui/linux.ui.xml:955 ui/linux.ui.xml:1050
379 msgid "Full screen" 379 msgid "Full screen"
380 msgstr "Tela cheia" 380 msgstr "Tela cheia"
381 381
@@ -383,22 +383,22 @@ msgstr &quot;Tela cheia&quot; @@ -383,22 +383,22 @@ msgstr &quot;Tela cheia&quot;
383 msgid "Generic name" 383 msgid "Generic name"
384 msgstr "Nome genérico" 384 msgstr "Nome genérico"
385 385
386 -#: ui/linux.ui.xml:37 ui/linux.ui.xml:550 ui/macos.ui.xml:37  
387 -#: ui/macos.ui.xml:550 ui/windows.ui.xml:37 ui/windows.ui.xml:550 386 +#: ui/windows.ui.xml:37 ui/windows.ui.xml:550 ui/macos.ui.xml:37
  387 +#: ui/macos.ui.xml:550 ui/linux.ui.xml:37 ui/linux.ui.xml:550
388 msgid "Help" 388 msgid "Help"
389 msgstr "Ajuda" 389 msgstr "Ajuda"
390 390
391 -#: ui/linux.ui.xml:390 ui/macos.ui.xml:390 ui/windows.ui.xml:390 391 +#: ui/windows.ui.xml:390 ui/macos.ui.xml:390 ui/linux.ui.xml:390
392 msgid "Host and Emulation settings" 392 msgid "Host and Emulation settings"
393 msgstr "Configuração de servidor e emulação" 393 msgstr "Configuração de servidor e emulação"
394 394
395 -#: src/objects/application/actions/about.c:134 src/objects/window/window.c:592 395 +#: src/objects/application/actions/about.c:119 src/objects/window/window.c:564
396 #: src/objects/os/linux/savedesktopicon.c:102 396 #: src/objects/os/linux/savedesktopicon.c:102
397 #: src/objects/os/windows/savedesktopicon.c:269 397 #: src/objects/os/windows/savedesktopicon.c:269
398 msgid "IBM 3270 Terminal emulator" 398 msgid "IBM 3270 Terminal emulator"
399 msgstr "Emulador de terminal IBM 3270" 399 msgstr "Emulador de terminal IBM 3270"
400 400
401 -#: src/objects/actions/view.c:90 401 +#: src/objects/actions/view.c:89
402 msgid "Icon" 402 msgid "Icon"
403 msgstr "Ícone" 403 msgstr "Ícone"
404 404
@@ -434,7 +434,7 @@ msgstr &quot;Apenas ícones&quot; @@ -434,7 +434,7 @@ msgstr &quot;Apenas ícones&quot;
434 msgid "If the action can be activated" 434 msgid "If the action can be activated"
435 msgstr "Se a ação pode ser ativada" 435 msgstr "Se a ação pode ser ativada"
436 436
437 -#: ui/linux.ui.xml:1022 ui/macos.ui.xml:1022 ui/windows.ui.xml:1022 437 +#: ui/windows.ui.xml:1022 ui/macos.ui.xml:1022 ui/linux.ui.xml:1022
438 msgid "Insert" 438 msgid "Insert"
439 msgstr "Inserção" 439 msgstr "Inserção"
440 440
@@ -450,15 +450,15 @@ msgstr &quot;Itens empacotados do final para o início&quot; @@ -450,15 +450,15 @@ msgstr &quot;Itens empacotados do final para o início&quot;
450 msgid "Items packed from the start to the end" 450 msgid "Items packed from the start to the end"
451 msgstr "Itens empacotados do início para o final" 451 msgstr "Itens empacotados do início para o final"
452 452
453 -#: src/objects/toolbar/settings.c:113 453 +#: src/objects/toolbar/settings.c:112
454 msgid "Itens" 454 msgid "Itens"
455 msgstr "Itens" 455 msgstr "Itens"
456 456
457 -#: ui/linux.ui.xml:515 ui/macos.ui.xml:515 ui/windows.ui.xml:515 457 +#: ui/windows.ui.xml:515 ui/macos.ui.xml:515 ui/linux.ui.xml:515
458 msgid "Keep selected" 458 msgid "Keep selected"
459 msgstr "Manter selecionado" 459 msgstr "Manter selecionado"
460 460
461 -#: ui/linux.ui.xml:395 ui/macos.ui.xml:395 ui/windows.ui.xml:395 461 +#: ui/windows.ui.xml:395 ui/macos.ui.xml:395 ui/linux.ui.xml:395
462 msgid "Keyboard accelerators" 462 msgid "Keyboard accelerators"
463 msgstr "Atalhos de teclado" 463 msgstr "Atalhos de teclado"
464 464
@@ -478,15 +478,15 @@ msgstr &quot;Altura do painel em linhas&quot; @@ -478,15 +478,15 @@ msgstr &quot;Altura do painel em linhas&quot;
478 msgid "Keypad width in columns" 478 msgid "Keypad width in columns"
479 msgstr "Largura do painel em colunas" 479 msgstr "Largura do painel em colunas"
480 480
481 -#: src/main/builder.c:135 481 +#: src/main/builder.c:112
482 msgid "Keypads" 482 msgid "Keypads"
483 msgstr "Painéis" 483 msgstr "Painéis"
484 484
485 -#: src/objects/application/actions/about.c:186 485 +#: src/objects/application/actions/about.c:171
486 msgid "LICENSE" 486 msgid "LICENSE"
487 msgstr "LICENCA" 487 msgstr "LICENCA"
488 488
489 -#: src/objects/actions/view.c:99 489 +#: src/objects/actions/view.c:98
490 msgid "Label" 490 msgid "Label"
491 msgstr "Etiqueta" 491 msgstr "Etiqueta"
492 492
@@ -502,56 +502,56 @@ msgstr &quot;Esquerda&quot; @@ -502,56 +502,56 @@ msgstr &quot;Esquerda&quot;
502 msgid "List of the available and unpacked actions" 502 msgid "List of the available and unpacked actions"
503 msgstr "Lista de ações disponíveis ainda não empacotadas" 503 msgstr "Lista de ações disponíveis ainda não empacotadas"
504 504
505 -#: src/objects/application/application.c:164 505 +#: src/objects/application/application.c:167
506 msgid "Log name" 506 msgid "Log name"
507 msgstr "Nome do arquivo de log" 507 msgstr "Nome do arquivo de log"
508 508
509 -#: ui/linux.ui.xml:72 ui/macos.ui.xml:72 ui/windows.ui.xml:72 509 +#: ui/windows.ui.xml:72 ui/macos.ui.xml:72 ui/linux.ui.xml:72
510 msgid "Main Menu" 510 msgid "Main Menu"
511 msgstr "Menu principal" 511 msgstr "Menu principal"
512 512
513 -#: ui/linux.ui.xml:67 ui/macos.ui.xml:67 ui/windows.ui.xml:67 513 +#: ui/windows.ui.xml:67 ui/macos.ui.xml:67 ui/linux.ui.xml:67
514 msgid "Main Toolbar" 514 msgid "Main Toolbar"
515 msgstr "Barra de ferramentas" 515 msgstr "Barra de ferramentas"
516 516
517 -#: ui/linux.ui.xml:1093 ui/macos.ui.xml:1093 ui/windows.ui.xml:1093 517 +#: ui/windows.ui.xml:1093 ui/macos.ui.xml:1093 ui/linux.ui.xml:1093
518 msgid "Main menu" 518 msgid "Main menu"
519 msgstr "Menu principal" 519 msgstr "Menu principal"
520 520
521 -#: src/objects/application/actions/about.c:174 521 +#: src/objects/application/actions/about.c:159
522 msgid "Maintainers" 522 msgid "Maintainers"
523 msgstr "Mantenedores" 523 msgstr "Mantenedores"
524 524
525 -#: ui/linux.ui.xml:348 ui/macos.ui.xml:348 ui/windows.ui.xml:348 525 +#: ui/windows.ui.xml:348 ui/macos.ui.xml:348 ui/linux.ui.xml:348
526 msgid "Menu" 526 msgid "Menu"
527 msgstr "Menu" 527 msgstr "Menu"
528 528
529 -#: ui/linux.ui.xml:419 ui/linux.ui.xml:1059 ui/macos.ui.xml:419  
530 -#: ui/macos.ui.xml:1059 ui/windows.ui.xml:419 ui/windows.ui.xml:1059 529 +#: ui/windows.ui.xml:419 ui/windows.ui.xml:1059 ui/macos.ui.xml:419
  530 +#: ui/macos.ui.xml:1059 ui/linux.ui.xml:419 ui/linux.ui.xml:1059
531 msgid "Model 2 - 80x24" 531 msgid "Model 2 - 80x24"
532 msgstr "Modelo 2 - 80x24" 532 msgstr "Modelo 2 - 80x24"
533 533
534 -#: ui/linux.ui.xml:424 ui/linux.ui.xml:1064 ui/macos.ui.xml:424  
535 -#: ui/macos.ui.xml:1064 ui/windows.ui.xml:424 ui/windows.ui.xml:1064 534 +#: ui/windows.ui.xml:424 ui/windows.ui.xml:1064 ui/macos.ui.xml:424
  535 +#: ui/macos.ui.xml:1064 ui/linux.ui.xml:424 ui/linux.ui.xml:1064
536 msgid "Model 3 - 80x32" 536 msgid "Model 3 - 80x32"
537 msgstr "Modelo 3 - 80x32" 537 msgstr "Modelo 3 - 80x32"
538 538
539 -#: ui/linux.ui.xml:429 ui/linux.ui.xml:1069 ui/macos.ui.xml:429  
540 -#: ui/macos.ui.xml:1069 ui/windows.ui.xml:429 ui/windows.ui.xml:1069 539 +#: ui/windows.ui.xml:429 ui/windows.ui.xml:1069 ui/macos.ui.xml:429
  540 +#: ui/macos.ui.xml:1069 ui/linux.ui.xml:429 ui/linux.ui.xml:1069
541 msgid "Model 4 - 80x43" 541 msgid "Model 4 - 80x43"
542 msgstr "Modelo 4 - 80x43" 542 msgstr "Modelo 4 - 80x43"
543 543
544 -#: ui/linux.ui.xml:434 ui/linux.ui.xml:1074 ui/macos.ui.xml:434  
545 -#: ui/macos.ui.xml:1074 ui/windows.ui.xml:434 ui/windows.ui.xml:1074 544 +#: ui/windows.ui.xml:434 ui/windows.ui.xml:1074 ui/macos.ui.xml:434
  545 +#: ui/macos.ui.xml:1074 ui/linux.ui.xml:434 ui/linux.ui.xml:1074
546 msgid "Model 5 - 132x27" 546 msgid "Model 5 - 132x27"
547 msgstr "Modelo 5 - 132x27" 547 msgstr "Modelo 5 - 132x27"
548 548
549 -#: ui/linux.ui.xml:460 ui/linux.ui.xml:924 ui/macos.ui.xml:460  
550 -#: ui/macos.ui.xml:924 ui/windows.ui.xml:460 ui/windows.ui.xml:924 549 +#: ui/windows.ui.xml:460 ui/windows.ui.xml:924 ui/macos.ui.xml:460
  550 +#: ui/macos.ui.xml:924 ui/linux.ui.xml:460 ui/linux.ui.xml:924
551 msgid "Monocase" 551 msgid "Monocase"
552 msgstr "Só Maiúsculas" 552 msgstr "Só Maiúsculas"
553 553
554 -#: ui/linux.ui.xml:535 ui/macos.ui.xml:535 ui/windows.ui.xml:535 554 +#: ui/windows.ui.xml:535 ui/macos.ui.xml:535 ui/linux.ui.xml:535
555 msgid "Network keep alive" 555 msgid "Network keep alive"
556 msgstr "Network keep alive" 556 msgstr "Network keep alive"
557 557
@@ -579,11 +579,11 @@ msgstr &quot;Nova janela com sessão padrão&quot; @@ -579,11 +579,11 @@ msgstr &quot;Nova janela com sessão padrão&quot;
579 msgid "Open Session" 579 msgid "Open Session"
580 msgstr "Abrir sessão" 580 msgstr "Abrir sessão"
581 581
582 -#: ui/linux.ui.xml:56 ui/macos.ui.xml:56 ui/windows.ui.xml:56 582 +#: ui/windows.ui.xml:56 ui/macos.ui.xml:56 ui/linux.ui.xml:56
583 msgid "Open in New Tab" 583 msgid "Open in New Tab"
584 msgstr "Abrir em nova aba" 584 msgstr "Abrir em nova aba"
585 585
586 -#: ui/linux.ui.xml:51 ui/macos.ui.xml:51 ui/windows.ui.xml:51 586 +#: ui/windows.ui.xml:51 ui/macos.ui.xml:51 ui/linux.ui.xml:51
587 msgid "Open in New Window" 587 msgid "Open in New Window"
588 msgstr "Abrir em nova janela" 588 msgstr "Abrir em nova janela"
589 589
@@ -611,10 +611,10 @@ msgstr &quot;Abrir sessão em nova janela&quot; @@ -611,10 +611,10 @@ msgstr &quot;Abrir sessão em nova janela&quot;
611 msgid "Open session on the active terminal" 611 msgid "Open session on the active terminal"
612 msgstr "Abrir sessão no terminal ativo" 612 msgstr "Abrir sessão no terminal ativo"
613 613
614 -#: ui/linux.ui.xml:447 ui/linux.ui.xml:755 ui/linux.ui.xml:897  
615 -#: ui/linux.ui.xml:1042 ui/macos.ui.xml:447 ui/macos.ui.xml:755  
616 -#: ui/macos.ui.xml:897 ui/macos.ui.xml:1042 ui/windows.ui.xml:447  
617 -#: ui/windows.ui.xml:755 ui/windows.ui.xml:897 ui/windows.ui.xml:1042 614 +#: ui/windows.ui.xml:447 ui/windows.ui.xml:755 ui/windows.ui.xml:897
  615 +#: ui/windows.ui.xml:1042 ui/macos.ui.xml:447 ui/macos.ui.xml:755
  616 +#: ui/macos.ui.xml:897 ui/macos.ui.xml:1042 ui/linux.ui.xml:447
  617 +#: ui/linux.ui.xml:755 ui/linux.ui.xml:897 ui/linux.ui.xml:1042
618 msgid "Options" 618 msgid "Options"
619 msgstr "Opções" 619 msgstr "Opções"
620 620
@@ -622,23 +622,23 @@ msgstr &quot;Opções&quot; @@ -622,23 +622,23 @@ msgstr &quot;Opções&quot;
622 msgid "Parameter Type" 622 msgid "Parameter Type"
623 msgstr "Tipo de parâmetro" 623 msgstr "Tipo de parâmetro"
624 624
625 -#: ui/linux.ui.xml:262 ui/linux.ui.xml:829 ui/macos.ui.xml:262  
626 -#: ui/macos.ui.xml:829 ui/windows.ui.xml:262 ui/windows.ui.xml:829 625 +#: ui/windows.ui.xml:262 ui/windows.ui.xml:829 ui/macos.ui.xml:262
  626 +#: ui/macos.ui.xml:829 ui/linux.ui.xml:262 ui/linux.ui.xml:829
627 msgid "Paste from clipboard" 627 msgid "Paste from clipboard"
628 msgstr "Colar da área de transferência" 628 msgstr "Colar da área de transferência"
629 629
630 -#: ui/linux.ui.xml:272 ui/linux.ui.xml:839 ui/macos.ui.xml:272  
631 -#: ui/macos.ui.xml:839 ui/windows.ui.xml:272 ui/windows.ui.xml:839 630 +#: ui/windows.ui.xml:272 ui/windows.ui.xml:839 ui/macos.ui.xml:272
  631 +#: ui/macos.ui.xml:839 ui/linux.ui.xml:272 ui/linux.ui.xml:839
632 msgid "Paste from text file" 632 msgid "Paste from text file"
633 msgstr "Colar de um arquivo texto" 633 msgstr "Colar de um arquivo texto"
634 634
635 -#: ui/linux.ui.xml:267 ui/linux.ui.xml:834 ui/macos.ui.xml:267  
636 -#: ui/macos.ui.xml:834 ui/windows.ui.xml:267 ui/windows.ui.xml:834 635 +#: ui/windows.ui.xml:267 ui/windows.ui.xml:834 ui/macos.ui.xml:267
  636 +#: ui/macos.ui.xml:834 ui/linux.ui.xml:267 ui/linux.ui.xml:834
637 msgid "Paste next" 637 msgid "Paste next"
638 msgstr "Colar próximo" 638 msgstr "Colar próximo"
639 639
640 -#: ui/linux.ui.xml:485 ui/linux.ui.xml:941 ui/macos.ui.xml:485  
641 -#: ui/macos.ui.xml:941 ui/windows.ui.xml:485 ui/windows.ui.xml:941 640 +#: ui/windows.ui.xml:485 ui/windows.ui.xml:941 ui/macos.ui.xml:485
  641 +#: ui/macos.ui.xml:941 ui/linux.ui.xml:485 ui/linux.ui.xml:941
642 msgid "Paste with left margin" 642 msgid "Paste with left margin"
643 msgstr "Colar com margem esquerda" 643 msgstr "Colar com margem esquerda"
644 644
@@ -651,20 +651,20 @@ msgstr &quot;Caminho para o novo atalho&quot; @@ -651,20 +651,20 @@ msgstr &quot;Caminho para o novo atalho&quot;
651 msgid "Position" 651 msgid "Position"
652 msgstr "Posição" 652 msgstr "Posição"
653 653
654 -#: ui/linux.ui.xml:662 ui/macos.ui.xml:662 ui/windows.ui.xml:662 654 +#: ui/windows.ui.xml:662 ui/macos.ui.xml:662 ui/linux.ui.xml:662
655 msgid "Preferences" 655 msgid "Preferences"
656 msgstr "Preferências" 656 msgstr "Preferências"
657 657
658 -#: ui/linux.ui.xml:174 ui/linux.ui.xml:641 ui/macos.ui.xml:174  
659 -#: ui/macos.ui.xml:641 ui/windows.ui.xml:174 ui/windows.ui.xml:641 658 +#: ui/windows.ui.xml:174 ui/windows.ui.xml:641 ui/macos.ui.xml:174
  659 +#: ui/macos.ui.xml:641 ui/linux.ui.xml:174 ui/linux.ui.xml:641
660 msgid "Print" 660 msgid "Print"
661 msgstr "Imprimir" 661 msgstr "Imprimir"
662 662
663 -#: ui/linux.ui.xml:992 ui/macos.ui.xml:992 ui/windows.ui.xml:992 663 +#: ui/windows.ui.xml:992 ui/macos.ui.xml:992 ui/linux.ui.xml:992
664 msgid "Print screen" 664 msgid "Print screen"
665 msgstr "Imrpimir o conteúdo da tela" 665 msgstr "Imrpimir o conteúdo da tela"
666 666
667 -#: ui/linux.ui.xml:795 ui/macos.ui.xml:795 ui/windows.ui.xml:795 667 +#: ui/windows.ui.xml:795 ui/macos.ui.xml:795 ui/linux.ui.xml:795
668 msgid "Print selected" 668 msgid "Print selected"
669 msgstr "Imprimir seleção" 669 msgstr "Imprimir seleção"
670 670
@@ -673,8 +673,8 @@ msgstr &quot;Imprimir seleção&quot; @@ -673,8 +673,8 @@ msgstr &quot;Imprimir seleção&quot;
673 msgid "Property \"%s\" is invalid for this object" 673 msgid "Property \"%s\" is invalid for this object"
674 msgstr "Propriedade \"%s\" é inválida para este objeto" 674 msgstr "Propriedade \"%s\" é inválida para este objeto"
675 675
676 -#: src/objects/application/actions/window.c:64 ui/linux.ui.xml:89  
677 -#: ui/macos.ui.xml:89 ui/windows.ui.xml:89 676 +#: src/objects/application/actions/window.c:64 ui/windows.ui.xml:89
  677 +#: ui/macos.ui.xml:89 ui/linux.ui.xml:89
678 msgid "Quit" 678 msgid "Quit"
679 msgstr "Sair" 679 msgstr "Sair"
680 680
@@ -682,13 +682,13 @@ msgstr &quot;Sair&quot; @@ -682,13 +682,13 @@ msgstr &quot;Sair&quot;
682 msgid "Rename Session" 682 msgid "Rename Session"
683 msgstr "Renomear sessão" 683 msgstr "Renomear sessão"
684 684
685 -#: ui/linux.ui.xml:296 ui/linux.ui.xml:858 ui/macos.ui.xml:296  
686 -#: ui/macos.ui.xml:858 ui/windows.ui.xml:296 ui/windows.ui.xml:858 685 +#: ui/windows.ui.xml:296 ui/windows.ui.xml:858 ui/macos.ui.xml:296
  686 +#: ui/macos.ui.xml:858 ui/linux.ui.xml:296 ui/linux.ui.xml:858
687 msgid "Reselect" 687 msgid "Reselect"
688 msgstr "Reselecionar" 688 msgstr "Reselecionar"
689 689
690 -#: ui/linux.ui.xml:480 ui/linux.ui.xml:912 ui/macos.ui.xml:480  
691 -#: ui/macos.ui.xml:912 ui/windows.ui.xml:480 ui/windows.ui.xml:912 690 +#: ui/windows.ui.xml:480 ui/windows.ui.xml:912 ui/macos.ui.xml:480
  691 +#: ui/macos.ui.xml:912 ui/linux.ui.xml:480 ui/linux.ui.xml:912
692 msgid "Resize on alternate screen" 692 msgid "Resize on alternate screen"
693 msgstr "Mudar tamanho do terminal em tela alternativa" 693 msgstr "Mudar tamanho do terminal em tela alternativa"
694 694
@@ -696,8 +696,8 @@ msgstr &quot;Mudar tamanho do terminal em tela alternativa&quot; @@ -696,8 +696,8 @@ msgstr &quot;Mudar tamanho do terminal em tela alternativa&quot;
696 msgid "Right" 696 msgid "Right"
697 msgstr "Direita" 697 msgstr "Direita"
698 698
699 -#: ui/linux.ui.xml:135 ui/linux.ui.xml:602 ui/macos.ui.xml:135  
700 -#: ui/macos.ui.xml:602 ui/windows.ui.xml:135 ui/windows.ui.xml:602 699 +#: ui/windows.ui.xml:135 ui/windows.ui.xml:602 ui/macos.ui.xml:135
  700 +#: ui/macos.ui.xml:602 ui/linux.ui.xml:135 ui/linux.ui.xml:602
701 msgid "Save" 701 msgid "Save"
702 msgstr "Salvar" 702 msgstr "Salvar"
703 703
@@ -705,11 +705,11 @@ msgstr &quot;Salvar&quot; @@ -705,11 +705,11 @@ msgstr &quot;Salvar&quot;
705 msgid "Save current session preferences to file" 705 msgid "Save current session preferences to file"
706 msgstr "Salvar preferências da sessão para arquivo" 706 msgstr "Salvar preferências da sessão para arquivo"
707 707
708 -#: ui/linux.ui.xml:987 ui/macos.ui.xml:987 ui/windows.ui.xml:987 708 +#: ui/windows.ui.xml:987 ui/macos.ui.xml:987 ui/linux.ui.xml:987
709 msgid "Save screen" 709 msgid "Save screen"
710 msgstr "Salvar tela" 710 msgstr "Salvar tela"
711 711
712 -#: ui/linux.ui.xml:790 ui/macos.ui.xml:790 ui/windows.ui.xml:790 712 +#: ui/windows.ui.xml:790 ui/macos.ui.xml:790 ui/linux.ui.xml:790
713 msgid "Save selected" 713 msgid "Save selected"
714 msgstr "Salvar seleção" 714 msgstr "Salvar seleção"
715 715
@@ -735,38 +735,38 @@ msgstr &quot;Salvar para arquivo de atalho&quot; @@ -735,38 +735,38 @@ msgstr &quot;Salvar para arquivo de atalho&quot;
735 msgid "Save to windows shortcut" 735 msgid "Save to windows shortcut"
736 msgstr "Salvar para atalho windows" 736 msgstr "Salvar para atalho windows"
737 737
738 -#: ui/linux.ui.xml:416 ui/linux.ui.xml:1056 ui/macos.ui.xml:416  
739 -#: ui/macos.ui.xml:1056 ui/windows.ui.xml:416 ui/windows.ui.xml:1056 738 +#: ui/windows.ui.xml:416 ui/windows.ui.xml:1056 ui/macos.ui.xml:416
  739 +#: ui/macos.ui.xml:1056 ui/linux.ui.xml:416 ui/linux.ui.xml:1056
740 msgid "Screen size" 740 msgid "Screen size"
741 msgstr "Tamanho da tela" 741 msgstr "Tamanho da tela"
742 742
743 -#: ui/linux.ui.xml:286 ui/linux.ui.xml:853 ui/macos.ui.xml:286  
744 -#: ui/macos.ui.xml:853 ui/windows.ui.xml:286 ui/windows.ui.xml:853 743 +#: ui/windows.ui.xml:286 ui/windows.ui.xml:853 ui/macos.ui.xml:286
  744 +#: ui/macos.ui.xml:853 ui/linux.ui.xml:286 ui/linux.ui.xml:853
745 msgid "Select Field" 745 msgid "Select Field"
746 msgstr "Selecionar campo" 746 msgstr "Selecionar campo"
747 747
748 -#: ui/linux.ui.xml:281 ui/linux.ui.xml:848 ui/macos.ui.xml:281  
749 -#: ui/macos.ui.xml:848 ui/windows.ui.xml:281 ui/windows.ui.xml:848 748 +#: ui/windows.ui.xml:281 ui/windows.ui.xml:848 ui/macos.ui.xml:281
  749 +#: ui/macos.ui.xml:848 ui/linux.ui.xml:281 ui/linux.ui.xml:848
750 msgid "Select all" 750 msgid "Select all"
751 msgstr "Selecionar tudo" 751 msgstr "Selecionar tudo"
752 752
753 -#: ui/linux.ui.xml:495 ui/linux.ui.xml:760 ui/macos.ui.xml:495  
754 -#: ui/macos.ui.xml:760 ui/windows.ui.xml:495 ui/windows.ui.xml:760 753 +#: ui/windows.ui.xml:495 ui/windows.ui.xml:760 ui/macos.ui.xml:495
  754 +#: ui/macos.ui.xml:760 ui/linux.ui.xml:495 ui/linux.ui.xml:760
755 msgid "Select by rectangles" 755 msgid "Select by rectangles"
756 msgstr "Seleção retangular" 756 msgstr "Seleção retangular"
757 757
758 -#: src/objects/toolbar/settings.c:113 758 +#: src/objects/toolbar/settings.c:112
759 msgid "Select the toolbar itens" 759 msgid "Select the toolbar itens"
760 msgstr "Selecione itens da barra de ferramentas" 760 msgstr "Selecione itens da barra de ferramentas"
761 761
762 -#: src/objects/toolbar/settings.c:118 762 +#: src/objects/toolbar/settings.c:117
763 msgid "Selected" 763 msgid "Selected"
764 msgstr "Selecionado" 764 msgstr "Selecionado"
765 765
766 -#: ui/linux.ui.xml:145 ui/linux.ui.xml:182 ui/linux.ui.xml:612  
767 -#: ui/linux.ui.xml:649 ui/macos.ui.xml:145 ui/macos.ui.xml:182  
768 -#: ui/macos.ui.xml:612 ui/macos.ui.xml:649 ui/windows.ui.xml:145  
769 -#: ui/windows.ui.xml:182 ui/windows.ui.xml:612 ui/windows.ui.xml:649 766 +#: ui/windows.ui.xml:145 ui/windows.ui.xml:182 ui/windows.ui.xml:612
  767 +#: ui/windows.ui.xml:649 ui/macos.ui.xml:145 ui/macos.ui.xml:182
  768 +#: ui/macos.ui.xml:612 ui/macos.ui.xml:649 ui/linux.ui.xml:145
  769 +#: ui/linux.ui.xml:182 ui/linux.ui.xml:612 ui/linux.ui.xml:649
770 msgid "Selected area" 770 msgid "Selected area"
771 msgstr "Área selecionada" 771 msgstr "Área selecionada"
772 772
@@ -774,24 +774,24 @@ msgstr &quot;Área selecionada&quot; @@ -774,24 +774,24 @@ msgstr &quot;Área selecionada&quot;
774 msgid "Send/Receive" 774 msgid "Send/Receive"
775 msgstr "Enviar/Receber" 775 msgstr "Enviar/Receber"
776 776
777 -#: src/objects/window/actions/filetransfer.c:46 ui/linux.ui.xml:196  
778 -#: ui/linux.ui.xml:997 ui/macos.ui.xml:196 ui/macos.ui.xml:997  
779 -#: ui/windows.ui.xml:196 ui/windows.ui.xml:997 777 +#: src/objects/window/actions/filetransfer.c:46 ui/windows.ui.xml:196
  778 +#: ui/windows.ui.xml:997 ui/macos.ui.xml:196 ui/macos.ui.xml:997
  779 +#: ui/linux.ui.xml:196 ui/linux.ui.xml:997
780 msgid "Send/Receive files" 780 msgid "Send/Receive files"
781 msgstr "Enviar/Receber arquivos" 781 msgstr "Enviar/Receber arquivos"
782 782
783 -#: src/objects/toolbar/settings.c:253 src/objects/toolbar/settings.c:263 783 +#: src/objects/toolbar/settings.c:252 src/objects/toolbar/settings.c:262
784 msgid "Separator" 784 msgid "Separator"
785 msgstr "Separador" 785 msgstr "Separador"
786 786
787 -#: ui/linux.ui.xml:48 ui/linux.ui.xml:584 ui/macos.ui.xml:48  
788 -#: ui/macos.ui.xml:584 ui/windows.ui.xml:48 ui/windows.ui.xml:584 787 +#: ui/windows.ui.xml:48 ui/windows.ui.xml:584 ui/macos.ui.xml:48
  788 +#: ui/macos.ui.xml:584 ui/linux.ui.xml:48 ui/linux.ui.xml:584
789 msgid "Session" 789 msgid "Session"
790 msgstr "Sessão" 790 msgstr "Sessão"
791 791
792 -#: ui/linux.ui.xml:77 ui/linux.ui.xml:978 ui/linux.ui.xml:1098  
793 -#: ui/macos.ui.xml:77 ui/macos.ui.xml:978 ui/macos.ui.xml:1098  
794 #: ui/windows.ui.xml:77 ui/windows.ui.xml:978 ui/windows.ui.xml:1098 792 #: ui/windows.ui.xml:77 ui/windows.ui.xml:978 ui/windows.ui.xml:1098
  793 +#: ui/macos.ui.xml:77 ui/macos.ui.xml:978 ui/macos.ui.xml:1098
  794 +#: ui/linux.ui.xml:77 ui/linux.ui.xml:978 ui/linux.ui.xml:1098
795 msgid "Session Trace" 795 msgid "Session Trace"
796 msgstr "Trace da sessão" 796 msgstr "Trace da sessão"
797 797
@@ -800,13 +800,13 @@ msgstr &quot;Trace da sessão&quot; @@ -800,13 +800,13 @@ msgstr &quot;Trace da sessão&quot;
800 msgid "Session file" 800 msgid "Session file"
801 msgstr "Arquivo de sessão" 801 msgstr "Arquivo de sessão"
802 802
803 -#: ui/linux.ui.xml:127 ui/linux.ui.xml:594 ui/macos.ui.xml:127  
804 -#: ui/macos.ui.xml:594 ui/windows.ui.xml:127 ui/windows.ui.xml:594 803 +#: ui/windows.ui.xml:127 ui/windows.ui.xml:594 ui/macos.ui.xml:127
  804 +#: ui/macos.ui.xml:594 ui/linux.ui.xml:127 ui/linux.ui.xml:594
805 msgid "Session in New Tab" 805 msgid "Session in New Tab"
806 msgstr "Sessão em nova aba" 806 msgstr "Sessão em nova aba"
807 807
808 -#: ui/linux.ui.xml:122 ui/linux.ui.xml:589 ui/macos.ui.xml:122  
809 -#: ui/macos.ui.xml:589 ui/windows.ui.xml:122 ui/windows.ui.xml:589 808 +#: ui/windows.ui.xml:122 ui/windows.ui.xml:589 ui/macos.ui.xml:122
  809 +#: ui/macos.ui.xml:589 ui/linux.ui.xml:122 ui/linux.ui.xml:589
810 msgid "Session in new window" 810 msgid "Session in new window"
811 msgstr "Sessão em nova janela" 811 msgstr "Sessão em nova janela"
812 812
@@ -815,34 +815,34 @@ msgstr &quot;Sessão em nova janela&quot; @@ -815,34 +815,34 @@ msgstr &quot;Sessão em nova janela&quot;
815 msgid "Session name" 815 msgid "Session name"
816 msgstr "Nome da sessão" 816 msgstr "Nome da sessão"
817 817
818 -#: src/objects/window/actions/sessionproperties.c:36 ui/linux.ui.xml:164  
819 -#: ui/linux.ui.xml:631 ui/linux.ui.xml:1112 ui/macos.ui.xml:164  
820 -#: ui/macos.ui.xml:631 ui/macos.ui.xml:1112 ui/windows.ui.xml:164  
821 -#: ui/windows.ui.xml:631 ui/windows.ui.xml:1112 818 +#: src/objects/window/actions/sessionproperties.c:36 ui/windows.ui.xml:164
  819 +#: ui/windows.ui.xml:631 ui/windows.ui.xml:1112 ui/macos.ui.xml:164
  820 +#: ui/macos.ui.xml:631 ui/macos.ui.xml:1112 ui/linux.ui.xml:164
  821 +#: ui/linux.ui.xml:631 ui/linux.ui.xml:1112
822 msgid "Session preferences" 822 msgid "Session preferences"
823 msgstr "Preferências da sessão" 823 msgstr "Preferências da sessão"
824 824
825 -#: src/objects/application/application.c:246 825 +#: src/objects/application/application.c:249
826 msgid "Set default log file name" 826 msgid "Set default log file name"
827 msgstr "Define o nome do arquivo de log padrão" 827 msgstr "Define o nome do arquivo de log padrão"
828 828
829 -#: src/objects/application/application.c:236 829 +#: src/objects/application/application.c:239
830 msgid "Set the user-interface type" 830 msgid "Set the user-interface type"
831 msgstr "Define o tipo de interface do usuário" 831 msgstr "Define o tipo de interface do usuário"
832 832
833 -#: ui/linux.ui.xml:382 ui/macos.ui.xml:382 ui/windows.ui.xml:382 833 +#: ui/windows.ui.xml:382 ui/macos.ui.xml:382 ui/linux.ui.xml:382
834 msgid "Settings" 834 msgid "Settings"
835 msgstr "Configurações" 835 msgstr "Configurações"
836 836
837 -#: src/objects/toolbar/settings.c:183 837 +#: src/objects/toolbar/settings.c:182
838 msgid "Setup the toolbar style and position" 838 msgid "Setup the toolbar style and position"
839 msgstr "Configura estilo e posição da barra de ferramentas" 839 msgstr "Configura estilo e posição da barra de ferramentas"
840 840
841 -#: src/objects/window/header-settings.c:85 841 +#: src/objects/window/header-settings.c:53
842 msgid "Setup title bar" 842 msgid "Setup title bar"
843 msgstr "Configurar barra de título" 843 msgstr "Configurar barra de título"
844 844
845 -#: src/objects/toolbar/settings.c:95 src/objects/toolbar/toolbar.c:213 845 +#: src/objects/toolbar/toolbar.c:213 src/objects/toolbar/settings.c:94
846 msgid "Setup toolbar" 846 msgid "Setup toolbar"
847 msgstr "Configurar barra de ferramentas" 847 msgstr "Configurar barra de ferramentas"
848 848
@@ -851,8 +851,8 @@ msgstr &quot;Configurar barra de ferramentas&quot; @@ -851,8 +851,8 @@ msgstr &quot;Configurar barra de ferramentas&quot;
851 msgid "Shortcut file" 851 msgid "Shortcut file"
852 msgstr "Arquivo de atalho" 852 msgstr "Arquivo de atalho"
853 853
854 -#: ui/linux.ui.xml:159 ui/linux.ui.xml:626 ui/macos.ui.xml:159  
855 -#: ui/macos.ui.xml:626 ui/windows.ui.xml:159 ui/windows.ui.xml:626 854 +#: ui/windows.ui.xml:159 ui/windows.ui.xml:626 ui/macos.ui.xml:159
  855 +#: ui/macos.ui.xml:626 ui/linux.ui.xml:159 ui/linux.ui.xml:626
856 msgid "Shortcut for this session" 856 msgid "Shortcut for this session"
857 msgstr "Atalho para essa sessão" 857 msgstr "Atalho para essa sessão"
858 858
@@ -860,15 +860,15 @@ msgstr &quot;Atalho para essa sessão&quot; @@ -860,15 +860,15 @@ msgstr &quot;Atalho para essa sessão&quot;
860 msgid "Shortcut name" 860 msgid "Shortcut name"
861 msgstr "Nome do atalho" 861 msgstr "Nome do atalho"
862 862
863 -#: ui/linux.ui.xml:510 ui/macos.ui.xml:510 ui/windows.ui.xml:510 863 +#: ui/windows.ui.xml:510 ui/macos.ui.xml:510 ui/linux.ui.xml:510
864 msgid "Show Underline" 864 msgid "Show Underline"
865 msgstr "Mostrar sublinhado" 865 msgstr "Mostrar sublinhado"
866 866
867 -#: ui/linux.ui.xml:774 ui/macos.ui.xml:774 ui/windows.ui.xml:774 867 +#: ui/windows.ui.xml:774 ui/macos.ui.xml:774 ui/linux.ui.xml:774
868 msgid "Show menu" 868 msgid "Show menu"
869 msgstr "Mostrar menu" 869 msgstr "Mostrar menu"
870 870
871 -#: ui/linux.ui.xml:769 ui/macos.ui.xml:769 ui/windows.ui.xml:769 871 +#: ui/windows.ui.xml:769 ui/macos.ui.xml:769 ui/linux.ui.xml:769
872 msgid "Show toolbar" 872 msgid "Show toolbar"
873 msgstr "Mostrar barra de ferramentas" 873 msgstr "Mostrar barra de ferramentas"
874 874
@@ -876,8 +876,8 @@ msgstr &quot;Mostrar barra de ferramentas&quot; @@ -876,8 +876,8 @@ msgstr &quot;Mostrar barra de ferramentas&quot;
876 msgid "Small" 876 msgid "Small"
877 msgstr "Pequeno" 877 msgstr "Pequeno"
878 878
879 -#: ui/linux.ui.xml:520 ui/linux.ui.xml:936 ui/macos.ui.xml:520  
880 -#: ui/macos.ui.xml:936 ui/windows.ui.xml:520 ui/windows.ui.xml:936 879 +#: ui/windows.ui.xml:520 ui/windows.ui.xml:936 ui/macos.ui.xml:520
  880 +#: ui/macos.ui.xml:936 ui/linux.ui.xml:520 ui/linux.ui.xml:936
881 msgid "Smart paste" 881 msgid "Smart paste"
882 msgstr "Colar inteligente" 882 msgstr "Colar inteligente"
883 883
@@ -897,7 +897,7 @@ msgstr &quot;Estado&quot; @@ -897,7 +897,7 @@ msgstr &quot;Estado&quot;
897 msgid "State Type" 897 msgid "State Type"
898 msgstr "Tipo do estado" 898 msgstr "Tipo do estado"
899 899
900 -#: src/objects/toolbar/settings.c:183 900 +#: src/objects/toolbar/settings.c:182
901 msgid "Style & Position" 901 msgid "Style & Position"
902 msgstr "Estilo & Posição" 902 msgstr "Estilo & Posição"
903 903
@@ -922,16 +922,16 @@ msgstr &quot;Arquivos de sessão TN3270&quot; @@ -922,16 +922,16 @@ msgstr &quot;Arquivos de sessão TN3270&quot;
922 msgid "TN3270 Session description" 922 msgid "TN3270 Session description"
923 msgstr "Descrição de sessão TN3270" 923 msgstr "Descrição de sessão TN3270"
924 924
925 -#: ui/linux.ui.xml:111 ui/linux.ui.xml:573 ui/macos.ui.xml:111  
926 -#: ui/macos.ui.xml:573 ui/windows.ui.xml:111 ui/windows.ui.xml:573 925 +#: ui/windows.ui.xml:111 ui/windows.ui.xml:573 ui/macos.ui.xml:111
  926 +#: ui/macos.ui.xml:573 ui/linux.ui.xml:111 ui/linux.ui.xml:573
927 msgid "Tab with default session" 927 msgid "Tab with default session"
928 msgstr "Aba com a sessão padrão" 928 msgstr "Aba com a sessão padrão"
929 929
930 -#: ui/linux.ui.xml:405 ui/macos.ui.xml:405 ui/windows.ui.xml:405 930 +#: ui/windows.ui.xml:405 ui/macos.ui.xml:405 ui/linux.ui.xml:405
931 msgid "Terminal colors" 931 msgid "Terminal colors"
932 msgstr "Cores do terminal" 932 msgstr "Cores do terminal"
933 933
934 -#: ui/linux.ui.xml:442 ui/macos.ui.xml:442 ui/windows.ui.xml:442 934 +#: ui/windows.ui.xml:442 ui/macos.ui.xml:442 ui/linux.ui.xml:442
935 msgid "Terminal font" 935 msgid "Terminal font"
936 msgstr "Fonte do terminal" 936 msgstr "Fonte do terminal"
937 937
@@ -939,7 +939,7 @@ msgstr &quot;Fonte do terminal&quot; @@ -939,7 +939,7 @@ msgstr &quot;Fonte do terminal&quot;
939 msgid "Text only" 939 msgid "Text only"
940 msgstr "Apenas texto" 940 msgstr "Apenas texto"
941 941
942 -#: src/objects/keypad/element.c:106 src/objects/keypad/model.c:104 942 +#: src/objects/keypad/model.c:104 src/objects/keypad/element.c:106
943 msgid "The Label of the keypad" 943 msgid "The Label of the keypad"
944 msgstr "A etiqueta do painel" 944 msgstr "A etiqueta do painel"
945 945
@@ -951,7 +951,7 @@ msgstr &quot;A etiqueta da ação&quot; @@ -951,7 +951,7 @@ msgstr &quot;A etiqueta da ação&quot;
951 msgid "The action tooltip" 951 msgid "The action tooltip"
952 msgstr "A dica da ação" 952 msgstr "A dica da ação"
953 953
954 -#: src/objects/application/application.c:150 954 +#: src/objects/application/application.c:153
955 msgid "The code of the User interface type" 955 msgid "The code of the User interface type"
956 msgstr "Código identificando o tipo de interface do usuário" 956 msgstr "Código identificando o tipo de interface do usuário"
957 957
@@ -964,7 +964,7 @@ msgstr &quot;O arquivo com as preferências da sessão atual&quot; @@ -964,7 +964,7 @@ msgstr &quot;O arquivo com as preferências da sessão atual&quot;
964 msgid "The file with the session preferences for this shortcut" 964 msgid "The file with the session preferences for this shortcut"
965 msgstr "O arquivo com as preferências da sessão para esse atalho" 965 msgstr "O arquivo com as preferências da sessão para esse atalho"
966 966
967 -#: src/objects/application/application.c:165 967 +#: src/objects/application/application.c:168
968 msgid "The full path of the default log file" 968 msgid "The full path of the default log file"
969 msgstr "Caminho completo do arquivo default" 969 msgstr "Caminho completo do arquivo default"
970 970
@@ -976,7 +976,7 @@ msgstr &quot;A etiqueta da ação&quot; @@ -976,7 +976,7 @@ msgstr &quot;A etiqueta da ação&quot;
976 msgid "The name of associated action" 976 msgid "The name of associated action"
977 msgstr "Nome da ação associada" 977 msgstr "Nome da ação associada"
978 978
979 -#: src/objects/window/window.c:234 979 +#: src/objects/window/window.c:206
980 msgid "The name of the actions in the header bar" 980 msgid "The name of the actions in the header bar"
981 msgstr "O nome das ações na barra de título" 981 msgstr "O nome das ações na barra de título"
982 982
@@ -1043,18 +1043,18 @@ msgstr &quot;O tipo do estado mantido pela ação&quot; @@ -1043,18 +1043,18 @@ msgstr &quot;O tipo do estado mantido pela ação&quot;
1043 msgid "This action is not available in this platform" 1043 msgid "This action is not available in this platform"
1044 msgstr "" 1044 msgstr ""
1045 1045
1046 -#: src/objects/window/header-settings.c:84 1046 +#: src/objects/window/header-settings.c:52
1047 msgid "Title bar" 1047 msgid "Title bar"
1048 msgstr "Barra de título" 1048 msgstr "Barra de título"
1049 1049
1050 -#: src/objects/window/header-settings.c:96 1050 +#: src/objects/window/header-settings.c:64
1051 msgid "Title bar actions" 1051 msgid "Title bar actions"
1052 msgstr "Ações da barra de título" 1052 msgstr "Ações da barra de título"
1053 1053
1054 -#: src/objects/toolbar/settings.c:94 ui/linux.ui.xml:343 ui/linux.ui.xml:968  
1055 -#: ui/linux.ui.xml:1088 ui/macos.ui.xml:343 ui/macos.ui.xml:968  
1056 -#: ui/macos.ui.xml:1088 ui/windows.ui.xml:343 ui/windows.ui.xml:968  
1057 -#: ui/windows.ui.xml:1088 1054 +#: src/objects/toolbar/settings.c:93 ui/windows.ui.xml:343
  1055 +#: ui/windows.ui.xml:968 ui/windows.ui.xml:1088 ui/macos.ui.xml:343
  1056 +#: ui/macos.ui.xml:968 ui/macos.ui.xml:1088 ui/linux.ui.xml:343
  1057 +#: ui/linux.ui.xml:968 ui/linux.ui.xml:1088
1058 msgid "Toolbar" 1058 msgid "Toolbar"
1059 msgstr "Barra de ferramentas" 1059 msgstr "Barra de ferramentas"
1060 1060
@@ -1074,20 +1074,20 @@ msgstr &quot;Est_ilo da barra de ferramentas&quot; @@ -1074,20 +1074,20 @@ msgstr &quot;Est_ilo da barra de ferramentas&quot;
1074 msgid "Top (system default)" 1074 msgid "Top (system default)"
1075 msgstr "Em cima (padrão do sistema)" 1075 msgstr "Em cima (padrão do sistema)"
1076 1076
1077 -#: ui/linux.ui.xml:973 ui/macos.ui.xml:973 ui/windows.ui.xml:973 1077 +#: ui/windows.ui.xml:973 ui/macos.ui.xml:973 ui/linux.ui.xml:973
1078 msgid "Top menu" 1078 msgid "Top menu"
1079 msgstr "Menu principal" 1079 msgstr "Menu principal"
1080 1080
1081 -#: ui/linux.ui.xml:338 ui/macos.ui.xml:338 ui/windows.ui.xml:338 1081 +#: ui/windows.ui.xml:338 ui/macos.ui.xml:338 ui/linux.ui.xml:338
1082 msgid "Trace" 1082 msgid "Trace"
1083 msgstr "Trace" 1083 msgstr "Trace"
1084 1084
1085 -#: ui/linux.ui.xml:465 ui/linux.ui.xml:1027 ui/macos.ui.xml:465  
1086 -#: ui/macos.ui.xml:1027 ui/windows.ui.xml:465 ui/windows.ui.xml:1027 1085 +#: ui/windows.ui.xml:465 ui/windows.ui.xml:1027 ui/macos.ui.xml:465
  1086 +#: ui/macos.ui.xml:1027 ui/linux.ui.xml:465 ui/linux.ui.xml:1027
1087 msgid "Track Cursor" 1087 msgid "Track Cursor"
1088 msgstr "Mostrar posição do cursor" 1088 msgstr "Mostrar posição do cursor"
1089 1089
1090 -#: src/objects/application/application.c:149 1090 +#: src/objects/application/application.c:152
1091 msgid "UI Type" 1091 msgid "UI Type"
1092 msgstr "Interface de usuário" 1092 msgstr "Interface de usuário"
1093 1093
@@ -1104,39 +1104,39 @@ msgstr &quot;&quot; @@ -1104,39 +1104,39 @@ msgstr &quot;&quot;
1104 msgid "Unable to load session preferences from '%s'" 1104 msgid "Unable to load session preferences from '%s'"
1105 msgstr "Incapaz de ler preferências de sessa de '%s'" 1105 msgstr "Incapaz de ler preferências de sessa de '%s'"
1106 1106
1107 -#: ui/linux.ui.xml:291 ui/linux.ui.xml:800 ui/macos.ui.xml:291  
1108 -#: ui/macos.ui.xml:800 ui/windows.ui.xml:291 ui/windows.ui.xml:800 1107 +#: ui/windows.ui.xml:291 ui/windows.ui.xml:800 ui/macos.ui.xml:291
  1108 +#: ui/macos.ui.xml:800 ui/linux.ui.xml:291 ui/linux.ui.xml:800
1109 msgid "Unselect" 1109 msgid "Unselect"
1110 msgstr "Remover seleção" 1110 msgstr "Remover seleção"
1111 1111
1112 -#: src/objects/application/actions/about.c:113 1112 +#: src/objects/application/actions/about.c:98
1113 #, c-format 1113 #, c-format
1114 msgid "Unstable version %s-%s" 1114 msgid "Unstable version %s-%s"
1115 msgstr "Versão instável %s-%s" 1115 msgstr "Versão instável %s-%s"
1116 1116
1117 -#: ui/linux.ui.xml:530 ui/linux.ui.xml:907 ui/macos.ui.xml:530  
1118 -#: ui/macos.ui.xml:907 ui/windows.ui.xml:530 ui/windows.ui.xml:907 1117 +#: ui/windows.ui.xml:530 ui/windows.ui.xml:907 ui/macos.ui.xml:530
  1118 +#: ui/macos.ui.xml:907 ui/linux.ui.xml:530 ui/linux.ui.xml:907
1119 msgid "Use +/- for field navigation" 1119 msgid "Use +/- for field navigation"
1120 msgstr "Usar teclas +/- para navegar por campos" 1120 msgstr "Usar teclas +/- para navegar por campos"
1121 1121
1122 -#: src/objects/application/actions/about.c:115 1122 +#: src/objects/application/actions/about.c:100
1123 #, c-format 1123 #, c-format
1124 msgid "Version %s-%s" 1124 msgid "Version %s-%s"
1125 msgstr "Versão %s-%s" 1125 msgstr "Versão %s-%s"
1126 1126
1127 -#: src/objects/window/header.c:63 ui/linux.ui.xml:64 ui/linux.ui.xml:965  
1128 -#: ui/linux.ui.xml:1085 ui/macos.ui.xml:64 ui/macos.ui.xml:965  
1129 -#: ui/macos.ui.xml:1085 ui/windows.ui.xml:64 ui/windows.ui.xml:965  
1130 -#: ui/windows.ui.xml:1085 1127 +#: src/objects/window/header.c:63 ui/windows.ui.xml:64 ui/windows.ui.xml:965
  1128 +#: ui/windows.ui.xml:1085 ui/macos.ui.xml:64 ui/macos.ui.xml:965
  1129 +#: ui/macos.ui.xml:1085 ui/linux.ui.xml:64 ui/linux.ui.xml:965
  1130 +#: ui/linux.ui.xml:1085
1131 msgid "View" 1131 msgid "View"
1132 msgstr "Exibir" 1132 msgstr "Exibir"
1133 1133
1134 -#: src/objects/application/actions/about.c:206 1134 +#: src/objects/application/actions/about.c:191
1135 msgid "View this project on github" 1135 msgid "View this project on github"
1136 msgstr "Portal do Software Público Brasileiro" 1136 msgstr "Portal do Software Público Brasileiro"
1137 1137
1138 -#: ui/linux.ui.xml:106 ui/linux.ui.xml:568 ui/macos.ui.xml:106  
1139 -#: ui/macos.ui.xml:568 ui/windows.ui.xml:106 ui/windows.ui.xml:568 1138 +#: ui/windows.ui.xml:106 ui/windows.ui.xml:568 ui/macos.ui.xml:106
  1139 +#: ui/macos.ui.xml:568 ui/linux.ui.xml:106 ui/linux.ui.xml:568
1140 msgid "Window with default session" 1140 msgid "Window with default session"
1141 msgstr "Janela com sessão padrão" 1141 msgstr "Janela com sessão padrão"
1142 1142
@@ -1158,36 +1158,36 @@ msgstr &quot;_Cancelar&quot; @@ -1158,36 +1158,36 @@ msgstr &quot;_Cancelar&quot;
1158 msgid "_Close session" 1158 msgid "_Close session"
1159 msgstr "_Fechar sessão" 1159 msgstr "_Fechar sessão"
1160 1160
1161 -#: ui/linux.ui.xml:369 ui/linux.ui.xml:1107 ui/macos.ui.xml:369  
1162 -#: ui/macos.ui.xml:1107 ui/windows.ui.xml:369 ui/windows.ui.xml:1107 1161 +#: ui/windows.ui.xml:369 ui/windows.ui.xml:1107 ui/macos.ui.xml:369
  1162 +#: ui/macos.ui.xml:1107 ui/linux.ui.xml:369 ui/linux.ui.xml:1107
1163 msgid "_Connect" 1163 msgid "_Connect"
1164 msgstr "_Conectar" 1164 msgstr "_Conectar"
1165 1165
1166 -#: ui/linux.ui.xml:374 ui/macos.ui.xml:374 ui/windows.ui.xml:374 1166 +#: ui/windows.ui.xml:374 ui/macos.ui.xml:374 ui/linux.ui.xml:374
1167 msgid "_Disconnect" 1167 msgid "_Disconnect"
1168 msgstr "_Desconectar" 1168 msgstr "_Desconectar"
1169 1169
1170 -#: ui/linux.ui.xml:232 ui/linux.ui.xml:681 ui/linux.ui.xml:824  
1171 -#: ui/macos.ui.xml:232 ui/macos.ui.xml:681 ui/macos.ui.xml:824  
1172 #: ui/windows.ui.xml:232 ui/windows.ui.xml:681 ui/windows.ui.xml:824 1170 #: ui/windows.ui.xml:232 ui/windows.ui.xml:681 ui/windows.ui.xml:824
  1171 +#: ui/macos.ui.xml:232 ui/macos.ui.xml:681 ui/macos.ui.xml:824
  1172 +#: ui/linux.ui.xml:232 ui/linux.ui.xml:681 ui/linux.ui.xml:824
1173 msgid "_Edit" 1173 msgid "_Edit"
1174 msgstr "_Editar" 1174 msgstr "_Editar"
1175 1175
1176 -#: ui/linux.ui.xml:99 ui/macos.ui.xml:99 ui/windows.ui.xml:99 1176 +#: ui/windows.ui.xml:99 ui/macos.ui.xml:99 ui/linux.ui.xml:99
1177 msgid "_File" 1177 msgid "_File"
1178 msgstr "_Arquivo" 1178 msgstr "_Arquivo"
1179 1179
1180 -#: ui/linux.ui.xml:361 ui/macos.ui.xml:361 ui/windows.ui.xml:361 1180 +#: ui/windows.ui.xml:361 ui/macos.ui.xml:361 ui/linux.ui.xml:361
1181 msgid "_Network" 1181 msgid "_Network"
1182 msgstr "_Rede" 1182 msgstr "_Rede"
1183 1183
1184 -#: ui/linux.ui.xml:103 ui/linux.ui.xml:565 ui/macos.ui.xml:103  
1185 -#: ui/macos.ui.xml:565 ui/windows.ui.xml:103 ui/windows.ui.xml:565 1184 +#: ui/windows.ui.xml:103 ui/windows.ui.xml:565 ui/macos.ui.xml:103
  1185 +#: ui/macos.ui.xml:565 ui/linux.ui.xml:103 ui/linux.ui.xml:565
1186 msgid "_New" 1186 msgid "_New"
1187 msgstr "_Nova" 1187 msgstr "_Nova"
1188 1188
1189 -#: ui/linux.ui.xml:119 ui/linux.ui.xml:581 ui/macos.ui.xml:119  
1190 -#: ui/macos.ui.xml:581 ui/windows.ui.xml:119 ui/windows.ui.xml:581 1189 +#: ui/windows.ui.xml:119 ui/windows.ui.xml:581 ui/macos.ui.xml:119
  1190 +#: ui/macos.ui.xml:581 ui/linux.ui.xml:119 ui/linux.ui.xml:581
1191 msgid "_Open" 1191 msgid "_Open"
1192 msgstr "_Abrir" 1192 msgstr "_Abrir"
1193 1193
@@ -1204,15 +1204,15 @@ msgstr &quot;Renomear sessão&quot; @@ -1204,15 +1204,15 @@ msgstr &quot;Renomear sessão&quot;
1204 msgid "_Save" 1204 msgid "_Save"
1205 msgstr "_Salvar" 1205 msgstr "_Salvar"
1206 1206
1207 -#: ui/linux.ui.xml:335 ui/macos.ui.xml:335 ui/windows.ui.xml:335 1207 +#: ui/windows.ui.xml:335 ui/macos.ui.xml:335 ui/linux.ui.xml:335
1208 msgid "_View" 1208 msgid "_View"
1209 msgstr "_Exibir" 1209 msgstr "_Exibir"
1210 1210
1211 -#: src/objects/application/actions/about.c:205 1211 +#: src/objects/application/actions/about.c:190
1212 msgid "https://github.com/PerryWerneck/pw3270" 1212 msgid "https://github.com/PerryWerneck/pw3270"
1213 msgstr "https://portal.softwarepublico.gov.br/social/pw3270/" 1213 msgstr "https://portal.softwarepublico.gov.br/social/pw3270/"
1214 1214
1215 -#: src/objects/application/actions/about.c:208 1215 +#: src/objects/application/actions/about.c:193
1216 msgid "translator-credits" 1216 msgid "translator-credits"
1217 msgstr "translator-credits" 1217 msgstr "translator-credits"
1218 1218
locale/pw3270.pot
1 -# SOME DESCRIPTIVE TITLE.  
2 -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER  
3 -# This file is distributed under the same license as the PACKAGE package.  
4 -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.  
5 -#  
6 -#, fuzzy  
7 -msgid ""  
8 -msgstr ""  
9 -"Project-Id-Version: PACKAGE VERSION\n"  
10 -"Report-Msgid-Bugs-To: \n"  
11 -"POT-Creation-Date: 2023-01-11 03:29-0300\n"  
12 -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"  
13 -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"  
14 -"Language-Team: LANGUAGE <LL@li.org>\n"  
15 -"Language: \n"  
16 -"MIME-Version: 1.0\n"  
17 -"Content-Type: text/plain; charset=UTF-8\n"  
18 -"Content-Transfer-Encoding: 8bit\n"  
19 -  
20 -#: src/objects/application/application.c:211  
21 -#, c-format  
22 -msgid "\"%s\" is not a valid user interface name"  
23 -msgstr ""  
24 -  
25 -#: src/objects/application/actions/about.c:133  
26 -#, c-format  
27 -msgid "%s for %s."  
28 -msgstr ""  
29 -  
30 -#: src/objects/application/actions/about.c:140  
31 -msgid "32 bits Linux"  
32 -msgstr ""  
33 -  
34 -#: src/objects/application/actions/about.c:138  
35 -msgid "32 bits Windows"  
36 -msgstr ""  
37 -  
38 -#: src/objects/actions/save.c:167 src/objects/os/linux/savedesktopicon.c:233  
39 -#: src/objects/os/windows/savedesktopicon.c:222  
40 -msgid "3270 session files"  
41 -msgstr ""  
42 -  
43 -#: src/objects/application/actions/about.c:142  
44 -msgid "64 bits Linux"  
45 -msgstr ""  
46 -  
47 -#: src/objects/application/actions/about.c:136  
48 -msgid "64 bits Windows"  
49 -msgstr ""  
50 -  
51 -#: src/objects/toolbar/settings.c:215  
52 -msgid ""  
53 -"<small><b>The toolbar position only takes effect after restart</b></small>"  
54 -msgstr ""  
55 -  
56 -#: src/objects/application/actions/about.c:232 ui/linux.ui.xml:40  
57 -#: ui/linux.ui.xml:553 ui/macos.ui.xml:40 ui/macos.ui.xml:553  
58 -#: ui/windows.ui.xml:40 ui/windows.ui.xml:553  
59 -msgid "About PW3270"  
60 -msgstr ""  
61 -  
62 -#: src/objects/actions/abstract.c:93  
63 -msgid "Action Name"  
64 -msgstr ""  
65 -  
66 -#: src/objects/window/window.c:233  
67 -msgid "Action Names"  
68 -msgstr ""  
69 -  
70 -#: ui/linux.ui.xml:525 ui/linux.ui.xml:917 ui/linux.ui.xml:1032  
71 -#: ui/macos.ui.xml:525 ui/macos.ui.xml:917 ui/macos.ui.xml:1032  
72 -#: ui/windows.ui.xml:525 ui/windows.ui.xml:917 ui/windows.ui.xml:1032  
73 -msgid "Alert sound"  
74 -msgstr ""  
75 -  
76 -#: src/main/tools.c:79  
77 -msgid "All files"  
78 -msgstr ""  
79 -  
80 -#: ui/linux.ui.xml:252 ui/linux.ui.xml:691 ui/macos.ui.xml:252  
81 -#: ui/macos.ui.xml:691 ui/windows.ui.xml:252 ui/windows.ui.xml:691  
82 -msgid "Append to copy"  
83 -msgstr ""  
84 -  
85 -#: src/objects/application/actions/about.c:175  
86 -msgid "Apple version"  
87 -msgstr ""  
88 -  
89 -#: ui/linux.ui.xml:385 ui/linux.ui.xml:665 ui/macos.ui.xml:385  
90 -#: ui/macos.ui.xml:665 ui/windows.ui.xml:385 ui/windows.ui.xml:665  
91 -msgid "Application"  
92 -msgstr ""  
93 -  
94 -#: src/objects/window/header-settings.c:125  
95 -msgid "Application menu"  
96 -msgstr ""  
97 -  
98 -#: src/objects/application/actions/preferences.c:76 ui/linux.ui.xml:84  
99 -#: ui/macos.ui.xml:84 ui/windows.ui.xml:84  
100 -msgid "Application preferences"  
101 -msgstr ""  
102 -  
103 -#: src/objects/window/page.c:264  
104 -msgid "Apply"  
105 -msgstr ""  
106 -  
107 -#: ui/linux.ui.xml:500 ui/macos.ui.xml:500 ui/windows.ui.xml:500  
108 -msgid "Auto-Reconnect"  
109 -msgstr ""  
110 -  
111 -#: src/objects/toolbar/settings.c:119 src/objects/settings/actionview.c:73  
112 -msgid "Available"  
113 -msgstr ""  
114 -  
115 -#: src/objects/application/actions/about.c:178  
116 -msgid "Based on X3270 from"  
117 -msgstr ""  
118 -  
119 -#: ui/linux.ui.xml:490 ui/linux.ui.xml:946 ui/macos.ui.xml:490  
120 -#: ui/macos.ui.xml:946 ui/windows.ui.xml:490 ui/windows.ui.xml:946  
121 -msgid "Blank Fill"  
122 -msgstr ""  
123 -  
124 -#: ui/linux.ui.xml:455 ui/macos.ui.xml:455 ui/windows.ui.xml:455  
125 -msgid "Blinking Cursor"  
126 -msgstr ""  
127 -  
128 -#: ui/linux.ui.xml:505 ui/macos.ui.xml:505 ui/windows.ui.xml:505  
129 -msgid "Bold"  
130 -msgstr ""  
131 -  
132 -#: src/objects/toolbar/models.c:134  
133 -msgid "Bottom"  
134 -msgstr ""  
135 -  
136 -#: src/objects/application/actions/open.c:104 src/objects/window/terminal.c:143  
137 -#: src/objects/window/terminal.c:197  
138 -msgid "Can't load session file"  
139 -msgstr ""  
140 -  
141 -#: src/objects/os/windows/open.c:133  
142 -msgid "Can't load session preferences"  
143 -msgstr ""  
144 -  
145 -#: src/objects/settings/gsettings.c:128  
146 -msgid "Can't load system settings"  
147 -msgstr ""  
148 -  
149 -#: src/objects/application/actions/open.c:99 src/objects/window/terminal.c:192  
150 -#, c-format  
151 -msgid "Can't use \"%s\""  
152 -msgstr ""  
153 -  
154 -#: src/objects/window/terminal.c:138  
155 -msgid "Can't use default session file"  
156 -msgstr ""  
157 -  
158 -#: src/objects/application/actions/open.c:50 src/objects/window/page.c:265  
159 -msgid "Cancel"  
160 -msgstr ""  
161 -  
162 -#: src/objects/application/actions/preferences.c:78  
163 -msgid "Change the application preferences"  
164 -msgstr ""  
165 -  
166 -#: src/objects/window/header-settings.c:96  
167 -msgid "Change the position of the title bar icons"  
168 -msgstr ""  
169 -  
170 -#: src/objects/window/actions/sessionproperties.c:37  
171 -msgid "Change the preferences for the active session"  
172 -msgstr ""  
173 -  
174 -#: ui/linux.ui.xml:305 ui/linux.ui.xml:725 ui/linux.ui.xml:867  
175 -#: ui/macos.ui.xml:305 ui/macos.ui.xml:725 ui/macos.ui.xml:867  
176 -#: ui/windows.ui.xml:305 ui/windows.ui.xml:725 ui/windows.ui.xml:867  
177 -msgid "Clear"  
178 -msgstr ""  
179 -  
180 -#: ui/linux.ui.xml:400 ui/macos.ui.xml:400 ui/windows.ui.xml:400  
181 -msgid "Clipboard"  
182 -msgstr ""  
183 -  
184 -#: ui/linux.ui.xml:150 ui/linux.ui.xml:187 ui/linux.ui.xml:617  
185 -#: ui/linux.ui.xml:654 ui/macos.ui.xml:150 ui/macos.ui.xml:187  
186 -#: ui/macos.ui.xml:617 ui/macos.ui.xml:654 ui/windows.ui.xml:150  
187 -#: ui/windows.ui.xml:187 ui/windows.ui.xml:617 ui/windows.ui.xml:654  
188 -msgid "Clipboard contents"  
189 -msgstr ""  
190 -  
191 -#: src/objects/application/actions/window.c:65  
192 -msgid "Close all windows and exit application"  
193 -msgstr ""  
194 -  
195 -#: src/objects/window/actions/close.c:61  
196 -msgid "Close the window"  
197 -msgstr ""  
198 -  
199 -#: src/objects/window/actions/close.c:60 ui/linux.ui.xml:217  
200 -#: ui/linux.ui.xml:813 ui/linux.ui.xml:1011 ui/linux.ui.xml:1118  
201 -#: ui/macos.ui.xml:217 ui/macos.ui.xml:813 ui/macos.ui.xml:1011  
202 -#: ui/macos.ui.xml:1118 ui/windows.ui.xml:217 ui/windows.ui.xml:813  
203 -#: ui/windows.ui.xml:1011 ui/windows.ui.xml:1118  
204 -msgid "Close window"  
205 -msgstr ""  
206 -  
207 -#: src/objects/os/linux/savedesktopicon.c:101  
208 -msgid "Comment"  
209 -msgstr ""  
210 -  
211 -#: src/objects/window/actions/connect.c:59  
212 -msgid "Connect"  
213 -msgstr ""  
214 -  
215 -#: ui/linux.ui.xml:450 ui/macos.ui.xml:450 ui/windows.ui.xml:450  
216 -msgid "Connect on startup"  
217 -msgstr ""  
218 -  
219 -#: src/objects/window/actions/connect.c:60  
220 -msgid "Connect to host"  
221 -msgstr ""  
222 -  
223 -#: src/objects/window/page.c:218 src/objects/window/window.c:808  
224 -msgid "Connected to host"  
225 -msgstr ""  
226 -  
227 -#: src/objects/application/actions/about.c:176  
228 -msgid "Contributors"  
229 -msgstr ""  
230 -  
231 -#: ui/linux.ui.xml:237 ui/linux.ui.xml:686 ui/macos.ui.xml:237  
232 -#: ui/macos.ui.xml:686 ui/windows.ui.xml:237 ui/windows.ui.xml:686  
233 -msgid "Copy"  
234 -msgstr ""  
235 -  
236 -#: ui/linux.ui.xml:706 ui/macos.ui.xml:706 ui/windows.ui.xml:706  
237 -msgid "Copy as HTML"  
238 -msgstr ""  
239 -  
240 -#: ui/linux.ui.xml:711 ui/macos.ui.xml:711 ui/windows.ui.xml:711  
241 -msgid "Copy as image"  
242 -msgstr ""  
243 -  
244 -#: ui/linux.ui.xml:247 ui/linux.ui.xml:701 ui/macos.ui.xml:247  
245 -#: ui/macos.ui.xml:701 ui/windows.ui.xml:247 ui/windows.ui.xml:701  
246 -msgid "Copy as table"  
247 -msgstr ""  
248 -  
249 -#: ui/linux.ui.xml:242 ui/linux.ui.xml:696 ui/macos.ui.xml:242  
250 -#: ui/macos.ui.xml:696 ui/windows.ui.xml:242 ui/windows.ui.xml:696  
251 -msgid "Copy as text"  
252 -msgstr ""  
253 -  
254 -#: src/objects/application/actions/about.c:182  
255 -msgid "Copyright © 2008 Banco do Brasil S.A."  
256 -msgstr ""  
257 -  
258 -#: src/objects/os/linux/savedesktopicon.c:114  
259 -#: src/objects/os/windows/savedesktopicon.c:107  
260 -#: src/objects/os/macos/savedesktopicon.c:54  
261 -msgid "Create shortcut for the current session"  
262 -msgstr ""  
263 -  
264 -#: ui/linux.ui.xml:475 ui/linux.ui.xml:902 ui/macos.ui.xml:475  
265 -#: ui/macos.ui.xml:902 ui/windows.ui.xml:475 ui/windows.ui.xml:902  
266 -msgid "Cross hair cursor"  
267 -msgstr ""  
268 -  
269 -#: ui/linux.ui.xml:177 ui/linux.ui.xml:644 ui/macos.ui.xml:177  
270 -#: ui/macos.ui.xml:644 ui/windows.ui.xml:177 ui/windows.ui.xml:644  
271 -msgid "Current Screen"  
272 -msgstr ""  
273 -  
274 -#: ui/linux.ui.xml:140 ui/linux.ui.xml:607 ui/macos.ui.xml:140  
275 -#: ui/macos.ui.xml:607 ui/windows.ui.xml:140 ui/windows.ui.xml:607  
276 -msgid "Current screen"  
277 -msgstr ""  
278 -  
279 -#: ui/linux.ui.xml:670 ui/macos.ui.xml:670 ui/windows.ui.xml:670  
280 -msgid "Current session"  
281 -msgstr ""  
282 -  
283 -#: ui/linux.ui.xml:257 ui/linux.ui.xml:716 ui/macos.ui.xml:257  
284 -#: ui/macos.ui.xml:716 ui/windows.ui.xml:257 ui/windows.ui.xml:716  
285 -msgid "Cut"  
286 -msgstr ""  
287 -  
288 -#: ui/linux.ui.xml:315 ui/linux.ui.xml:735 ui/linux.ui.xml:877  
289 -#: ui/macos.ui.xml:315 ui/macos.ui.xml:735 ui/macos.ui.xml:877  
290 -#: ui/windows.ui.xml:315 ui/windows.ui.xml:735 ui/windows.ui.xml:877  
291 -msgid "Delete Field"  
292 -msgstr ""  
293 -  
294 -#: src/objects/os/windows/savedesktopicon.c:80  
295 -msgid "Description"  
296 -msgstr ""  
297 -  
298 -#: ui/linux.ui.xml:808 ui/linux.ui.xml:1006 ui/macos.ui.xml:808  
299 -#: ui/macos.ui.xml:1006 ui/windows.ui.xml:808 ui/windows.ui.xml:1006  
300 -msgid "Disconnect"  
301 -msgstr ""  
302 -  
303 -#: src/objects/window/page.c:207 src/objects/window/window.c:808  
304 -#: src/objects/window/window.c:835  
305 -msgid "Disconnected from host"  
306 -msgstr ""  
307 -  
308 -#: ui/linux.ui.xml:540 ui/linux.ui.xml:929 ui/linux.ui.xml:1045  
309 -#: ui/macos.ui.xml:540 ui/macos.ui.xml:929 ui/macos.ui.xml:1045  
310 -#: ui/windows.ui.xml:540 ui/windows.ui.xml:929 ui/windows.ui.xml:1045  
311 -msgid "Dynamic font spacing"  
312 -msgstr ""  
313 -  
314 -#: src/objects/keypad/element.c:128  
315 -msgid "Element col"  
316 -msgstr ""  
317 -  
318 -#: src/objects/keypad/element.c:152  
319 -msgid "Element height in rows"  
320 -msgstr ""  
321 -  
322 -#: src/objects/keypad/element.c:116  
323 -msgid "Element row"  
324 -msgstr ""  
325 -  
326 -#: src/objects/keypad/element.c:140  
327 -msgid "Element width in columns"  
328 -msgstr ""  
329 -  
330 -#: src/objects/actions/abstract.c:140  
331 -msgid "Enabled"  
332 -msgstr ""  
333 -  
334 -#: src/objects/settings/actionview.c:78  
335 -msgid "End"  
336 -msgstr ""  
337 -  
338 -#: ui/linux.ui.xml:310 ui/linux.ui.xml:730 ui/linux.ui.xml:872  
339 -#: ui/macos.ui.xml:310 ui/macos.ui.xml:730 ui/macos.ui.xml:872  
340 -#: ui/windows.ui.xml:310 ui/windows.ui.xml:730 ui/windows.ui.xml:872  
341 -msgid "Erase input"  
342 -msgstr ""  
343 -  
344 -#: ui/linux.ui.xml:320 ui/linux.ui.xml:740 ui/linux.ui.xml:882  
345 -#: ui/macos.ui.xml:320 ui/macos.ui.xml:740 ui/macos.ui.xml:882  
346 -#: ui/windows.ui.xml:320 ui/windows.ui.xml:740 ui/windows.ui.xml:882  
347 -msgid "Erase to end of field"  
348 -msgstr ""  
349 -  
350 -#: ui/linux.ui.xml:325 ui/linux.ui.xml:745 ui/linux.ui.xml:887  
351 -#: ui/macos.ui.xml:325 ui/macos.ui.xml:745 ui/macos.ui.xml:887  
352 -#: ui/windows.ui.xml:325 ui/windows.ui.xml:745 ui/windows.ui.xml:887  
353 -msgid "Erase to end of line"  
354 -msgstr ""  
355 -  
356 -#: src/objects/os/windows/open.c:140  
357 -msgid "Error starting session"  
358 -msgstr ""  
359 -  
360 -#: ui/linux.ui.xml:353 ui/macos.ui.xml:353 ui/windows.ui.xml:353  
361 -msgid "Field attributes"  
362 -msgstr ""  
363 -  
364 -#: src/objects/os/windows/savedesktopicon.c:219  
365 -msgid "File for session preferences"  
366 -msgstr ""  
367 -  
368 -#: ui/linux.ui.xml:470 ui/macos.ui.xml:470 ui/windows.ui.xml:470  
369 -msgid "Full Screen"  
370 -msgstr ""  
371 -  
372 -#: ui/linux.ui.xml:779 ui/linux.ui.xml:955 ui/linux.ui.xml:1050  
373 -#: ui/macos.ui.xml:779 ui/macos.ui.xml:955 ui/macos.ui.xml:1050  
374 -#: ui/windows.ui.xml:779 ui/windows.ui.xml:955 ui/windows.ui.xml:1050  
375 -msgid "Full screen"  
376 -msgstr ""  
377 -  
378 -#: src/objects/os/linux/savedesktopicon.c:94  
379 -msgid "Generic name"  
380 -msgstr ""  
381 -  
382 -#: ui/linux.ui.xml:37 ui/linux.ui.xml:550 ui/macos.ui.xml:37  
383 -#: ui/macos.ui.xml:550 ui/windows.ui.xml:37 ui/windows.ui.xml:550  
384 -msgid "Help"  
385 -msgstr ""  
386 -  
387 -#: ui/linux.ui.xml:390 ui/macos.ui.xml:390 ui/windows.ui.xml:390  
388 -msgid "Host and Emulation settings"  
389 -msgstr ""  
390 -  
391 -#: src/objects/application/actions/about.c:134 src/objects/window/window.c:592  
392 -#: src/objects/os/linux/savedesktopicon.c:102  
393 -#: src/objects/os/windows/savedesktopicon.c:269  
394 -msgid "IBM 3270 Terminal emulator"  
395 -msgstr ""  
396 -  
397 -#: src/objects/actions/view.c:90  
398 -msgid "Icon"  
399 -msgstr ""  
400 -  
401 -#: src/objects/actions/abstract.c:101  
402 -msgid "Icon Name"  
403 -msgstr ""  
404 -  
405 -#: src/objects/toolbar/settings.c:54  
406 -msgid "Icon Size"  
407 -msgstr ""  
408 -  
409 -#: src/objects/toolbar/settings.c:61  
410 -msgid "Icon Style"  
411 -msgstr ""  
412 -  
413 -#: src/objects/toolbar/models.c:52  
414 -msgid "Icon _size"  
415 -msgstr ""  
416 -  
417 -#: src/objects/toolbar/models.c:108  
418 -msgid "Icon type"  
419 -msgstr ""  
420 -  
421 -#: src/objects/toolbar/models.c:97  
422 -msgid "Icons & text"  
423 -msgstr ""  
424 -  
425 -#: src/objects/toolbar/models.c:87  
426 -msgid "Icons only"  
427 -msgstr ""  
428 -  
429 -#: src/objects/actions/abstract.c:141  
430 -msgid "If the action can be activated"  
431 -msgstr ""  
432 -  
433 -#: ui/linux.ui.xml:1022 ui/macos.ui.xml:1022 ui/windows.ui.xml:1022  
434 -msgid "Insert"  
435 -msgstr ""  
436 -  
437 -#: src/objects/keypad/attribute.c:79  
438 -msgid "Invalid or unknown property type"  
439 -msgstr ""  
440 -  
441 -#: src/objects/settings/actionview.c:79  
442 -msgid "Items packed from the end to the start"  
443 -msgstr ""  
444 -  
445 -#: src/objects/settings/actionview.c:69  
446 -msgid "Items packed from the start to the end"  
447 -msgstr ""  
448 -  
449 -#: src/objects/toolbar/settings.c:113  
450 -msgid "Itens"  
451 -msgstr ""  
452 -  
453 -#: ui/linux.ui.xml:515 ui/macos.ui.xml:515 ui/windows.ui.xml:515  
454 -msgid "Keep selected"  
455 -msgstr ""  
456 -  
457 -#: ui/linux.ui.xml:395 ui/macos.ui.xml:395 ui/windows.ui.xml:395  
458 -msgid "Keyboard accelerators"  
459 -msgstr ""  
460 -  
461 -#: src/objects/keypad/model.c:103  
462 -msgid "Keypad Label"  
463 -msgstr ""  
464 -  
465 -#: src/objects/keypad/model.c:93  
466 -msgid "Keypad Name"  
467 -msgstr ""  
468 -  
469 -#: src/objects/keypad/model.c:136  
470 -msgid "Keypad height in rows"  
471 -msgstr ""  
472 -  
473 -#: src/objects/keypad/model.c:124  
474 -msgid "Keypad width in columns"  
475 -msgstr ""  
476 -  
477 -#: src/main/builder.c:135  
478 -msgid "Keypads"  
479 -msgstr ""  
480 -  
481 -#: src/objects/application/actions/about.c:186  
482 -msgid "LICENSE"  
483 -msgstr ""  
484 -  
485 -#: src/objects/actions/view.c:99  
486 -msgid "Label"  
487 -msgstr ""  
488 -  
489 -#: src/objects/toolbar/models.c:66  
490 -msgid "Large"  
491 -msgstr ""  
492 -  
493 -#: src/objects/toolbar/models.c:131  
494 -msgid "Left"  
495 -msgstr ""  
496 -  
497 -#: src/objects/settings/actionview.c:74  
498 -msgid "List of the available and unpacked actions"  
499 -msgstr ""  
500 -  
501 -#: src/objects/application/application.c:164  
502 -msgid "Log name"  
503 -msgstr ""  
504 -  
505 -#: ui/linux.ui.xml:72 ui/macos.ui.xml:72 ui/windows.ui.xml:72  
506 -msgid "Main Menu"  
507 -msgstr ""  
508 -  
509 -#: ui/linux.ui.xml:67 ui/macos.ui.xml:67 ui/windows.ui.xml:67  
510 -msgid "Main Toolbar"  
511 -msgstr ""  
512 -  
513 -#: ui/linux.ui.xml:1093 ui/macos.ui.xml:1093 ui/windows.ui.xml:1093  
514 -msgid "Main menu"  
515 -msgstr ""  
516 -  
517 -#: src/objects/application/actions/about.c:174  
518 -msgid "Maintainers"  
519 -msgstr ""  
520 -  
521 -#: ui/linux.ui.xml:348 ui/macos.ui.xml:348 ui/windows.ui.xml:348  
522 -msgid "Menu"  
523 -msgstr ""  
524 -  
525 -#: ui/linux.ui.xml:419 ui/linux.ui.xml:1059 ui/macos.ui.xml:419  
526 -#: ui/macos.ui.xml:1059 ui/windows.ui.xml:419 ui/windows.ui.xml:1059  
527 -msgid "Model 2 - 80x24"  
528 -msgstr ""  
529 -  
530 -#: ui/linux.ui.xml:424 ui/linux.ui.xml:1064 ui/macos.ui.xml:424  
531 -#: ui/macos.ui.xml:1064 ui/windows.ui.xml:424 ui/windows.ui.xml:1064  
532 -msgid "Model 3 - 80x32"  
533 -msgstr ""  
534 -  
535 -#: ui/linux.ui.xml:429 ui/linux.ui.xml:1069 ui/macos.ui.xml:429  
536 -#: ui/macos.ui.xml:1069 ui/windows.ui.xml:429 ui/windows.ui.xml:1069  
537 -msgid "Model 4 - 80x43"  
538 -msgstr ""  
539 -  
540 -#: ui/linux.ui.xml:434 ui/linux.ui.xml:1074 ui/macos.ui.xml:434  
541 -#: ui/macos.ui.xml:1074 ui/windows.ui.xml:434 ui/windows.ui.xml:1074  
542 -msgid "Model 5 - 132x27"  
543 -msgstr ""  
544 -  
545 -#: ui/linux.ui.xml:460 ui/linux.ui.xml:924 ui/macos.ui.xml:460  
546 -#: ui/macos.ui.xml:924 ui/windows.ui.xml:460 ui/windows.ui.xml:924  
547 -msgid "Monocase"  
548 -msgstr ""  
549 -  
550 -#: ui/linux.ui.xml:535 ui/macos.ui.xml:535 ui/windows.ui.xml:535  
551 -msgid "Network keep alive"  
552 -msgstr ""  
553 -  
554 -#: src/objects/window/page.c:275  
555 -msgid "New session name"  
556 -msgstr ""  
557 -  
558 -#: src/objects/application/actions/window.c:84  
559 -msgid "New tab"  
560 -msgstr ""  
561 -  
562 -#: src/objects/application/actions/window.c:85  
563 -msgid "New tab with default session"  
564 -msgstr ""  
565 -  
566 -#: src/objects/application/actions/window.c:104  
567 -msgid "New window"  
568 -msgstr ""  
569 -  
570 -#: src/objects/application/actions/window.c:105  
571 -msgid "New window with default session"  
572 -msgstr ""  
573 -  
574 -#: src/objects/application/actions/open.c:49  
575 -msgid "Open Session"  
576 -msgstr ""  
577 -  
578 -#: ui/linux.ui.xml:56 ui/macos.ui.xml:56 ui/windows.ui.xml:56  
579 -msgid "Open in New Tab"  
580 -msgstr ""  
581 -  
582 -#: ui/linux.ui.xml:51 ui/macos.ui.xml:51 ui/windows.ui.xml:51  
583 -msgid "Open in New Window"  
584 -msgstr ""  
585 -  
586 -#: src/objects/application/actions/open.c:201  
587 -msgid "Open in new tab"  
588 -msgstr ""  
589 -  
590 -#: src/objects/application/actions/open.c:189  
591 -msgid "Open in new window"  
592 -msgstr ""  
593 -  
594 -#: src/objects/application/actions/open.c:176  
595 -msgid "Open session"  
596 -msgstr ""  
597 -  
598 -#: src/objects/application/actions/open.c:202  
599 -msgid "Open session in New Tab"  
600 -msgstr ""  
601 -  
602 -#: src/objects/application/actions/open.c:190  
603 -msgid "Open session in New window"  
604 -msgstr ""  
605 -  
606 -#: src/objects/application/actions/open.c:177  
607 -msgid "Open session on the active terminal"  
608 -msgstr ""  
609 -  
610 -#: ui/linux.ui.xml:447 ui/linux.ui.xml:755 ui/linux.ui.xml:897  
611 -#: ui/linux.ui.xml:1042 ui/macos.ui.xml:447 ui/macos.ui.xml:755  
612 -#: ui/macos.ui.xml:897 ui/macos.ui.xml:1042 ui/windows.ui.xml:447  
613 -#: ui/windows.ui.xml:755 ui/windows.ui.xml:897 ui/windows.ui.xml:1042  
614 -msgid "Options"  
615 -msgstr ""  
616 -  
617 -#: src/objects/actions/abstract.c:124  
618 -msgid "Parameter Type"  
619 -msgstr ""  
620 -  
621 -#: ui/linux.ui.xml:262 ui/linux.ui.xml:829 ui/macos.ui.xml:262  
622 -#: ui/macos.ui.xml:829 ui/windows.ui.xml:262 ui/windows.ui.xml:829  
623 -msgid "Paste from clipboard"  
624 -msgstr ""  
625 -  
626 -#: ui/linux.ui.xml:272 ui/linux.ui.xml:839 ui/macos.ui.xml:272  
627 -#: ui/macos.ui.xml:839 ui/windows.ui.xml:272 ui/windows.ui.xml:839  
628 -msgid "Paste from text file"  
629 -msgstr ""  
630 -  
631 -#: ui/linux.ui.xml:267 ui/linux.ui.xml:834 ui/macos.ui.xml:267  
632 -#: ui/macos.ui.xml:834 ui/windows.ui.xml:267 ui/windows.ui.xml:834  
633 -msgid "Paste next"  
634 -msgstr ""  
635 -  
636 -#: ui/linux.ui.xml:485 ui/linux.ui.xml:941 ui/macos.ui.xml:485  
637 -#: ui/macos.ui.xml:941 ui/windows.ui.xml:485 ui/windows.ui.xml:941  
638 -msgid "Paste with left margin"  
639 -msgstr ""  
640 -  
641 -#: src/objects/os/linux/savedesktopicon.c:71  
642 -#: src/objects/os/windows/savedesktopicon.c:74  
643 -msgid "Path for the new shortcut"  
644 -msgstr ""  
645 -  
646 -#: src/objects/toolbar/models.c:125  
647 -msgid "Position"  
648 -msgstr ""  
649 -  
650 -#: ui/linux.ui.xml:662 ui/macos.ui.xml:662 ui/windows.ui.xml:662  
651 -msgid "Preferences"  
652 -msgstr ""  
653 -  
654 -#: ui/linux.ui.xml:174 ui/linux.ui.xml:641 ui/macos.ui.xml:174  
655 -#: ui/macos.ui.xml:641 ui/windows.ui.xml:174 ui/windows.ui.xml:641  
656 -msgid "Print"  
657 -msgstr ""  
658 -  
659 -#: ui/linux.ui.xml:992 ui/macos.ui.xml:992 ui/windows.ui.xml:992  
660 -msgid "Print screen"  
661 -msgstr ""  
662 -  
663 -#: ui/linux.ui.xml:795 ui/macos.ui.xml:795 ui/windows.ui.xml:795  
664 -msgid "Print selected"  
665 -msgstr ""  
666 -  
667 -#: src/objects/keypad/attribute.c:116  
668 -#, c-format  
669 -msgid "Property \"%s\" is invalid for this object"  
670 -msgstr ""  
671 -  
672 -#: src/objects/application/actions/window.c:64 ui/linux.ui.xml:89  
673 -#: ui/macos.ui.xml:89 ui/windows.ui.xml:89  
674 -msgid "Quit"  
675 -msgstr ""  
676 -  
677 -#: src/objects/window/page.c:262  
678 -msgid "Rename Session"  
679 -msgstr ""  
680 -  
681 -#: ui/linux.ui.xml:296 ui/linux.ui.xml:858 ui/macos.ui.xml:296  
682 -#: ui/macos.ui.xml:858 ui/windows.ui.xml:296 ui/windows.ui.xml:858  
683 -msgid "Reselect"  
684 -msgstr ""  
685 -  
686 -#: ui/linux.ui.xml:480 ui/linux.ui.xml:912 ui/macos.ui.xml:480  
687 -#: ui/macos.ui.xml:912 ui/windows.ui.xml:480 ui/windows.ui.xml:912  
688 -msgid "Resize on alternate screen"  
689 -msgstr ""  
690 -  
691 -#: src/objects/toolbar/models.c:137  
692 -msgid "Right"  
693 -msgstr ""  
694 -  
695 -#: ui/linux.ui.xml:135 ui/linux.ui.xml:602 ui/macos.ui.xml:135  
696 -#: ui/macos.ui.xml:602 ui/windows.ui.xml:135 ui/windows.ui.xml:602  
697 -msgid "Save"  
698 -msgstr ""  
699 -  
700 -#: src/objects/actions/save.c:77  
701 -msgid "Save current session preferences to file"  
702 -msgstr ""  
703 -  
704 -#: ui/linux.ui.xml:987 ui/macos.ui.xml:987 ui/windows.ui.xml:987  
705 -msgid "Save screen"  
706 -msgstr ""  
707 -  
708 -#: ui/linux.ui.xml:790 ui/macos.ui.xml:790 ui/windows.ui.xml:790  
709 -msgid "Save selected"  
710 -msgstr ""  
711 -  
712 -#: src/objects/actions/save.c:75 src/objects/actions/save.c:164  
713 -msgid "Save session preferences"  
714 -msgstr ""  
715 -  
716 -#: src/objects/os/linux/savedesktopicon.c:113  
717 -#: src/objects/os/windows/savedesktopicon.c:106  
718 -#: src/objects/os/macos/savedesktopicon.c:53  
719 -msgid "Save session shortcut"  
720 -msgstr ""  
721 -  
722 -#: src/objects/os/linux/savedesktopicon.c:230  
723 -msgid "Save to session filename"  
724 -msgstr ""  
725 -  
726 -#: src/objects/os/linux/savedesktopicon.c:202  
727 -msgid "Save to shortcut file"  
728 -msgstr ""  
729 -  
730 -#: src/objects/os/windows/savedesktopicon.c:184  
731 -msgid "Save to windows shortcut"  
732 -msgstr ""  
733 -  
734 -#: ui/linux.ui.xml:416 ui/linux.ui.xml:1056 ui/macos.ui.xml:416  
735 -#: ui/macos.ui.xml:1056 ui/windows.ui.xml:416 ui/windows.ui.xml:1056  
736 -msgid "Screen size"  
737 -msgstr ""  
738 -  
739 -#: ui/linux.ui.xml:286 ui/linux.ui.xml:853 ui/macos.ui.xml:286  
740 -#: ui/macos.ui.xml:853 ui/windows.ui.xml:286 ui/windows.ui.xml:853  
741 -msgid "Select Field"  
742 -msgstr ""  
743 -  
744 -#: ui/linux.ui.xml:281 ui/linux.ui.xml:848 ui/macos.ui.xml:281  
745 -#: ui/macos.ui.xml:848 ui/windows.ui.xml:281 ui/windows.ui.xml:848  
746 -msgid "Select all"  
747 -msgstr ""  
748 -  
749 -#: ui/linux.ui.xml:495 ui/linux.ui.xml:760 ui/macos.ui.xml:495  
750 -#: ui/macos.ui.xml:760 ui/windows.ui.xml:495 ui/windows.ui.xml:760  
751 -msgid "Select by rectangles"  
752 -msgstr ""  
753 -  
754 -#: src/objects/toolbar/settings.c:113  
755 -msgid "Select the toolbar itens"  
756 -msgstr ""  
757 -  
758 -#: src/objects/toolbar/settings.c:118  
759 -msgid "Selected"  
760 -msgstr ""  
761 -  
762 -#: ui/linux.ui.xml:145 ui/linux.ui.xml:182 ui/linux.ui.xml:612  
763 -#: ui/linux.ui.xml:649 ui/macos.ui.xml:145 ui/macos.ui.xml:182  
764 -#: ui/macos.ui.xml:612 ui/macos.ui.xml:649 ui/windows.ui.xml:145  
765 -#: ui/windows.ui.xml:182 ui/windows.ui.xml:612 ui/windows.ui.xml:649  
766 -msgid "Selected area"  
767 -msgstr ""  
768 -  
769 -#: src/objects/window/actions/filetransfer.c:45  
770 -msgid "Send/Receive"  
771 -msgstr ""  
772 -  
773 -#: src/objects/window/actions/filetransfer.c:46 ui/linux.ui.xml:196  
774 -#: ui/linux.ui.xml:997 ui/macos.ui.xml:196 ui/macos.ui.xml:997  
775 -#: ui/windows.ui.xml:196 ui/windows.ui.xml:997  
776 -msgid "Send/Receive files"  
777 -msgstr ""  
778 -  
779 -#: src/objects/toolbar/settings.c:253 src/objects/toolbar/settings.c:263  
780 -msgid "Separator"  
781 -msgstr ""  
782 -  
783 -#: ui/linux.ui.xml:48 ui/linux.ui.xml:584 ui/macos.ui.xml:48  
784 -#: ui/macos.ui.xml:584 ui/windows.ui.xml:48 ui/windows.ui.xml:584  
785 -msgid "Session"  
786 -msgstr ""  
787 -  
788 -#: ui/linux.ui.xml:77 ui/linux.ui.xml:978 ui/linux.ui.xml:1098  
789 -#: ui/macos.ui.xml:77 ui/macos.ui.xml:978 ui/macos.ui.xml:1098  
790 -#: ui/windows.ui.xml:77 ui/windows.ui.xml:978 ui/windows.ui.xml:1098  
791 -msgid "Session Trace"  
792 -msgstr ""  
793 -  
794 -#: src/objects/actions/save.c:63 src/objects/os/linux/savedesktopicon.c:85  
795 -#: src/objects/os/windows/savedesktopicon.c:94  
796 -msgid "Session file"  
797 -msgstr ""  
798 -  
799 -#: ui/linux.ui.xml:127 ui/linux.ui.xml:594 ui/macos.ui.xml:127  
800 -#: ui/macos.ui.xml:594 ui/windows.ui.xml:127 ui/windows.ui.xml:594  
801 -msgid "Session in New Tab"  
802 -msgstr ""  
803 -  
804 -#: ui/linux.ui.xml:122 ui/linux.ui.xml:589 ui/macos.ui.xml:122  
805 -#: ui/macos.ui.xml:589 ui/windows.ui.xml:122 ui/windows.ui.xml:589  
806 -msgid "Session in new window"  
807 -msgstr ""  
808 -  
809 -#: src/objects/actions/save.c:56 src/objects/os/linux/savedesktopicon.c:77  
810 -#: src/objects/os/windows/savedesktopicon.c:86  
811 -msgid "Session name"  
812 -msgstr ""  
813 -  
814 -#: src/objects/window/actions/sessionproperties.c:36 ui/linux.ui.xml:164  
815 -#: ui/linux.ui.xml:631 ui/linux.ui.xml:1112 ui/macos.ui.xml:164  
816 -#: ui/macos.ui.xml:631 ui/macos.ui.xml:1112 ui/windows.ui.xml:164  
817 -#: ui/windows.ui.xml:631 ui/windows.ui.xml:1112  
818 -msgid "Session preferences"  
819 -msgstr ""  
820 -  
821 -#: src/objects/application/application.c:246  
822 -msgid "Set default log file name"  
823 -msgstr ""  
824 -  
825 -#: src/objects/application/application.c:236  
826 -msgid "Set the user-interface type"  
827 -msgstr ""  
828 -  
829 -#: ui/linux.ui.xml:382 ui/macos.ui.xml:382 ui/windows.ui.xml:382  
830 -msgid "Settings"  
831 -msgstr ""  
832 -  
833 -#: src/objects/toolbar/settings.c:183  
834 -msgid "Setup the toolbar style and position"  
835 -msgstr ""  
836 -  
837 -#: src/objects/window/header-settings.c:85  
838 -msgid "Setup title bar"  
839 -msgstr ""  
840 -  
841 -#: src/objects/toolbar/settings.c:95 src/objects/toolbar/toolbar.c:213  
842 -msgid "Setup toolbar"  
843 -msgstr ""  
844 -  
845 -#: src/objects/os/linux/savedesktopicon.c:70  
846 -#: src/objects/os/windows/savedesktopicon.c:73  
847 -msgid "Shortcut file"  
848 -msgstr ""  
849 -  
850 -#: ui/linux.ui.xml:159 ui/linux.ui.xml:626 ui/macos.ui.xml:159  
851 -#: ui/macos.ui.xml:626 ui/windows.ui.xml:159 ui/windows.ui.xml:626  
852 -msgid "Shortcut for this session"  
853 -msgstr ""  
854 -  
855 -#: src/objects/os/linux/savedesktopicon.c:63  
856 -msgid "Shortcut name"  
857 -msgstr ""  
858 -  
859 -#: ui/linux.ui.xml:510 ui/macos.ui.xml:510 ui/windows.ui.xml:510  
860 -msgid "Show Underline"  
861 -msgstr ""  
862 -  
863 -#: ui/linux.ui.xml:774 ui/macos.ui.xml:774 ui/windows.ui.xml:774  
864 -msgid "Show menu"  
865 -msgstr ""  
866 -  
867 -#: ui/linux.ui.xml:769 ui/macos.ui.xml:769 ui/windows.ui.xml:769  
868 -msgid "Show toolbar"  
869 -msgstr ""  
870 -  
871 -#: src/objects/toolbar/models.c:61  
872 -msgid "Small"  
873 -msgstr ""  
874 -  
875 -#: ui/linux.ui.xml:520 ui/linux.ui.xml:936 ui/macos.ui.xml:520  
876 -#: ui/macos.ui.xml:936 ui/windows.ui.xml:520 ui/windows.ui.xml:936  
877 -msgid "Smart paste"  
878 -msgstr ""  
879 -  
880 -#: src/objects/os/linux/savedesktopicon.c:205  
881 -msgid "Standard desktop files"  
882 -msgstr ""  
883 -  
884 -#: src/objects/settings/actionview.c:68  
885 -msgid "Start"  
886 -msgstr ""  
887 -  
888 -#: src/objects/actions/abstract.c:152  
889 -msgid "State"  
890 -msgstr ""  
891 -  
892 -#: src/objects/actions/abstract.c:131  
893 -msgid "State Type"  
894 -msgstr ""  
895 -  
896 -#: src/objects/toolbar/settings.c:183  
897 -msgid "Style & Position"  
898 -msgstr ""  
899 -  
900 -#: src/objects/toolbar/models.c:114  
901 -msgid "Symbolic"  
902 -msgstr ""  
903 -  
904 -#: src/objects/toolbar/models.c:55 src/objects/toolbar/models.c:82  
905 -#: src/objects/toolbar/models.c:111  
906 -msgid "System default"  
907 -msgstr ""  
908 -  
909 -#: src/objects/settings/gsettings.c:133  
910 -msgid "System settings error"  
911 -msgstr ""  
912 -  
913 -#: src/main/tools.c:75  
914 -msgid "TN3270 Session Files"  
915 -msgstr ""  
916 -  
917 -#: src/objects/window/keyfile.c:241  
918 -msgid "TN3270 Session description"  
919 -msgstr ""  
920 -  
921 -#: ui/linux.ui.xml:111 ui/linux.ui.xml:573 ui/macos.ui.xml:111  
922 -#: ui/macos.ui.xml:573 ui/windows.ui.xml:111 ui/windows.ui.xml:573  
923 -msgid "Tab with default session"  
924 -msgstr ""  
925 -  
926 -#: ui/linux.ui.xml:405 ui/macos.ui.xml:405 ui/windows.ui.xml:405  
927 -msgid "Terminal colors"  
928 -msgstr ""  
929 -  
930 -#: ui/linux.ui.xml:442 ui/macos.ui.xml:442 ui/windows.ui.xml:442  
931 -msgid "Terminal font"  
932 -msgstr ""  
933 -  
934 -#: src/objects/toolbar/models.c:92  
935 -msgid "Text only"  
936 -msgstr ""  
937 -  
938 -#: src/objects/keypad/element.c:106 src/objects/keypad/model.c:104  
939 -msgid "The Label of the keypad"  
940 -msgstr ""  
941 -  
942 -#: src/objects/actions/abstract.c:109  
943 -msgid "The action label"  
944 -msgstr ""  
945 -  
946 -#: src/objects/actions/abstract.c:117  
947 -msgid "The action tooltip"  
948 -msgstr ""  
949 -  
950 -#: src/objects/application/application.c:150  
951 -msgid "The code of the User interface type"  
952 -msgstr ""  
953 -  
954 -#: src/objects/actions/save.c:64  
955 -msgid "The file to save the current session preferences"  
956 -msgstr ""  
957 -  
958 -#: src/objects/os/linux/savedesktopicon.c:86  
959 -#: src/objects/os/windows/savedesktopicon.c:95  
960 -msgid "The file with the session preferences for this shortcut"  
961 -msgstr ""  
962 -  
963 -#: src/objects/application/application.c:165  
964 -msgid "The full path of the default log file"  
965 -msgstr ""  
966 -  
967 -#: src/objects/actions/abstract.c:110  
968 -msgid "The label for the action"  
969 -msgstr ""  
970 -  
971 -#: src/objects/keypad/element.c:96  
972 -msgid "The name of associated action"  
973 -msgstr ""  
974 -  
975 -#: src/objects/window/window.c:234  
976 -msgid "The name of the actions in the header bar"  
977 -msgstr ""  
978 -  
979 -#: src/objects/toolbar/toolbar.c:98  
980 -msgid "The name of the actions in the toolbar"  
981 -msgstr ""  
982 -  
983 -#: src/objects/keypad/element.c:86  
984 -msgid "The name of the icon"  
985 -msgstr ""  
986 -  
987 -#: src/objects/actions/abstract.c:102  
988 -msgid "The name of the icon associated with the action"  
989 -msgstr ""  
990 -  
991 -#: src/objects/keypad/model.c:94  
992 -msgid "The name used to identify the keypad"  
993 -msgstr ""  
994 -  
995 -#: src/objects/actions/abstract.c:94  
996 -msgid "The name used to invoke the action"  
997 -msgstr ""  
998 -  
999 -#: src/objects/keypad/model.c:114  
1000 -msgid "The position of the keypad"  
1001 -msgstr ""  
1002 -  
1003 -#: src/objects/actions/save.c:57 src/objects/os/linux/savedesktopicon.c:79  
1004 -#: src/objects/os/windows/savedesktopicon.c:88  
1005 -msgid "The session name used in the window/tab title (empty for default)"  
1006 -msgstr ""  
1007 -  
1008 -#: src/objects/actions/abstract.c:153  
1009 -msgid "The state the action is in"  
1010 -msgstr ""  
1011 -  
1012 -#: src/objects/toolbar/toolbar.c:109  
1013 -msgid "The toolbar icon size"  
1014 -msgstr ""  
1015 -  
1016 -#: src/objects/toolbar/toolbar.c:135  
1017 -msgid "The toolbar icon type"  
1018 -msgstr ""  
1019 -  
1020 -#: src/objects/toolbar/toolbar.c:122  
1021 -msgid "The toolbar style"  
1022 -msgstr ""  
1023 -  
1024 -#: src/objects/actions/abstract.c:118  
1025 -msgid "The tooltip for the action"  
1026 -msgstr ""  
1027 -  
1028 -#: src/objects/actions/abstract.c:125  
1029 -msgid "The type of GVariant passed to activate()"  
1030 -msgstr ""  
1031 -  
1032 -#: src/objects/actions/abstract.c:132  
1033 -msgid "The type of the state kept by the action"  
1034 -msgstr ""  
1035 -  
1036 -#: src/objects/os/macos/savedesktopicon.c:68  
1037 -msgid "This action is not available in this platform"  
1038 -msgstr ""  
1039 -  
1040 -#: src/objects/window/header-settings.c:84  
1041 -msgid "Title bar"  
1042 -msgstr ""  
1043 -  
1044 -#: src/objects/window/header-settings.c:96  
1045 -msgid "Title bar actions"  
1046 -msgstr ""  
1047 -  
1048 -#: src/objects/toolbar/settings.c:94 ui/linux.ui.xml:343 ui/linux.ui.xml:968  
1049 -#: ui/linux.ui.xml:1088 ui/macos.ui.xml:343 ui/macos.ui.xml:968  
1050 -#: ui/macos.ui.xml:1088 ui/windows.ui.xml:343 ui/windows.ui.xml:968  
1051 -#: ui/windows.ui.xml:1088  
1052 -msgid "Toolbar"  
1053 -msgstr ""  
1054 -  
1055 -#: src/objects/toolbar/settings.c:68  
1056 -msgid "Toolbar Style"  
1057 -msgstr ""  
1058 -  
1059 -#: src/objects/toolbar/settings.c:75  
1060 -msgid "Toolbar position"  
1061 -msgstr ""  
1062 -  
1063 -#: src/objects/toolbar/models.c:79  
1064 -msgid "Toolbar s_tyle"  
1065 -msgstr ""  
1066 -  
1067 -#: src/objects/toolbar/models.c:128  
1068 -msgid "Top (system default)"  
1069 -msgstr ""  
1070 -  
1071 -#: ui/linux.ui.xml:973 ui/macos.ui.xml:973 ui/windows.ui.xml:973  
1072 -msgid "Top menu"  
1073 -msgstr ""  
1074 -  
1075 -#: ui/linux.ui.xml:338 ui/macos.ui.xml:338 ui/windows.ui.xml:338  
1076 -msgid "Trace"  
1077 -msgstr ""  
1078 -  
1079 -#: ui/linux.ui.xml:465 ui/linux.ui.xml:1027 ui/macos.ui.xml:465  
1080 -#: ui/macos.ui.xml:1027 ui/windows.ui.xml:465 ui/windows.ui.xml:1027  
1081 -msgid "Track Cursor"  
1082 -msgstr ""  
1083 -  
1084 -#: src/objects/application/application.c:149  
1085 -msgid "UI Type"  
1086 -msgstr ""  
1087 -  
1088 -#: src/objects/settings/gsettings.c:131  
1089 -msgid ""  
1090 -"Unable to initialize system settings. Application may crash in unexpected "  
1091 -"ways"  
1092 -msgstr ""  
1093 -  
1094 -#: src/objects/os/windows/open.c:137  
1095 -#, c-format  
1096 -msgid "Unable to load session preferences from '%s'"  
1097 -msgstr ""  
1098 -  
1099 -#: ui/linux.ui.xml:291 ui/linux.ui.xml:800 ui/macos.ui.xml:291  
1100 -#: ui/macos.ui.xml:800 ui/windows.ui.xml:291 ui/windows.ui.xml:800  
1101 -msgid "Unselect"  
1102 -msgstr ""  
1103 -  
1104 -#: src/objects/application/actions/about.c:113  
1105 -#, c-format  
1106 -msgid "Unstable version %s-%s"  
1107 -msgstr ""  
1108 -  
1109 -#: ui/linux.ui.xml:530 ui/linux.ui.xml:907 ui/macos.ui.xml:530  
1110 -#: ui/macos.ui.xml:907 ui/windows.ui.xml:530 ui/windows.ui.xml:907  
1111 -msgid "Use +/- for field navigation"  
1112 -msgstr ""  
1113 -  
1114 -#: src/objects/application/actions/about.c:115  
1115 -#, c-format  
1116 -msgid "Version %s-%s"  
1117 -msgstr ""  
1118 -  
1119 -#: src/objects/window/header.c:63 ui/linux.ui.xml:64 ui/linux.ui.xml:965  
1120 -#: ui/linux.ui.xml:1085 ui/macos.ui.xml:64 ui/macos.ui.xml:965  
1121 -#: ui/macos.ui.xml:1085 ui/windows.ui.xml:64 ui/windows.ui.xml:965  
1122 -#: ui/windows.ui.xml:1085  
1123 -msgid "View"  
1124 -msgstr ""  
1125 -  
1126 -#: src/objects/application/actions/about.c:206  
1127 -msgid "View this project on github"  
1128 -msgstr ""  
1129 -  
1130 -#: ui/linux.ui.xml:106 ui/linux.ui.xml:568 ui/macos.ui.xml:106  
1131 -#: ui/macos.ui.xml:568 ui/windows.ui.xml:106 ui/windows.ui.xml:568  
1132 -msgid "Window with default session"  
1133 -msgstr ""  
1134 -  
1135 -#: src/objects/os/windows/savedesktopicon.c:187  
1136 -msgid "Windows shortcuts"  
1137 -msgstr ""  
1138 -  
1139 -#: src/objects/settings/dialog.c:79  
1140 -msgid "_Apply"  
1141 -msgstr ""  
1142 -  
1143 -#: src/objects/actions/save.c:103 src/objects/settings/dialog.c:78  
1144 -#: src/objects/os/linux/savedesktopicon.c:140  
1145 -#: src/objects/os/windows/savedesktopicon.c:132  
1146 -msgid "_Cancel"  
1147 -msgstr ""  
1148 -  
1149 -#: src/objects/window/page.c:371  
1150 -msgid "_Close session"  
1151 -msgstr ""  
1152 -  
1153 -#: ui/linux.ui.xml:369 ui/linux.ui.xml:1107 ui/macos.ui.xml:369  
1154 -#: ui/macos.ui.xml:1107 ui/windows.ui.xml:369 ui/windows.ui.xml:1107  
1155 -msgid "_Connect"  
1156 -msgstr ""  
1157 -  
1158 -#: ui/linux.ui.xml:374 ui/macos.ui.xml:374 ui/windows.ui.xml:374  
1159 -msgid "_Disconnect"  
1160 -msgstr ""  
1161 -  
1162 -#: ui/linux.ui.xml:232 ui/linux.ui.xml:681 ui/linux.ui.xml:824  
1163 -#: ui/macos.ui.xml:232 ui/macos.ui.xml:681 ui/macos.ui.xml:824  
1164 -#: ui/windows.ui.xml:232 ui/windows.ui.xml:681 ui/windows.ui.xml:824  
1165 -msgid "_Edit"  
1166 -msgstr ""  
1167 -  
1168 -#: ui/linux.ui.xml:99 ui/macos.ui.xml:99 ui/windows.ui.xml:99  
1169 -msgid "_File"  
1170 -msgstr ""  
1171 -  
1172 -#: ui/linux.ui.xml:361 ui/macos.ui.xml:361 ui/windows.ui.xml:361  
1173 -msgid "_Network"  
1174 -msgstr ""  
1175 -  
1176 -#: ui/linux.ui.xml:103 ui/linux.ui.xml:565 ui/macos.ui.xml:103  
1177 -#: ui/macos.ui.xml:565 ui/windows.ui.xml:103 ui/windows.ui.xml:565  
1178 -msgid "_New"  
1179 -msgstr ""  
1180 -  
1181 -#: ui/linux.ui.xml:119 ui/linux.ui.xml:581 ui/macos.ui.xml:119  
1182 -#: ui/macos.ui.xml:581 ui/windows.ui.xml:119 ui/windows.ui.xml:581  
1183 -msgid "_Open"  
1184 -msgstr ""  
1185 -  
1186 -#: src/objects/toolbar/toolbar.c:235  
1187 -msgid "_Preferences"  
1188 -msgstr ""  
1189 -  
1190 -#: src/objects/window/page.c:365  
1191 -msgid "_Rename session"  
1192 -msgstr ""  
1193 -  
1194 -#: src/objects/actions/save.c:104 src/objects/os/linux/savedesktopicon.c:141  
1195 -#: src/objects/os/windows/savedesktopicon.c:133  
1196 -msgid "_Save"  
1197 -msgstr ""  
1198 -  
1199 -#: ui/linux.ui.xml:335 ui/macos.ui.xml:335 ui/windows.ui.xml:335  
1200 -msgid "_View"  
1201 -msgstr ""  
1202 -  
1203 -#: src/objects/application/actions/about.c:205  
1204 -msgid "https://github.com/PerryWerneck/pw3270"  
1205 -msgstr ""  
1206 -  
1207 -#: src/objects/application/actions/about.c:208  
1208 -msgid "translator-credits"  
1209 -msgstr "" 1 +# SOME DESCRIPTIVE TITLE.
  2 +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3 +# This file is distributed under the same license as the PACKAGE package.
  4 +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5 +#
  6 +#, fuzzy
  7 +msgid ""
  8 +msgstr ""
  9 +"Project-Id-Version: PACKAGE VERSION\n"
  10 +"Report-Msgid-Bugs-To: \n"
  11 +"POT-Creation-Date: 2023-01-18 12:47-0300\n"
  12 +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13 +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14 +"Language-Team: LANGUAGE <LL@li.org>\n"
  15 +"Language: \n"
  16 +"MIME-Version: 1.0\n"
  17 +"Content-Type: text/plain; charset=UTF-8\n"
  18 +"Content-Transfer-Encoding: 8bit\n"
  19 +
  20 +#: src/objects/application/application.c:214
  21 +#, c-format
  22 +msgid "\"%s\" is not a valid user interface name"
  23 +msgstr ""
  24 +
  25 +#: src/objects/application/actions/about.c:118
  26 +#, c-format
  27 +msgid "%s for %s."
  28 +msgstr ""
  29 +
  30 +#: src/objects/application/actions/about.c:125
  31 +msgid "32 bits Linux"
  32 +msgstr ""
  33 +
  34 +#: src/objects/application/actions/about.c:123
  35 +msgid "32 bits Windows"
  36 +msgstr ""
  37 +
  38 +#: src/objects/actions/save.c:167 src/objects/os/linux/savedesktopicon.c:233
  39 +#: src/objects/os/windows/savedesktopicon.c:222
  40 +msgid "3270 session files"
  41 +msgstr ""
  42 +
  43 +#: src/objects/application/actions/about.c:127
  44 +msgid "64 bits Linux"
  45 +msgstr ""
  46 +
  47 +#: src/objects/application/actions/about.c:121
  48 +msgid "64 bits Windows"
  49 +msgstr ""
  50 +
  51 +#: src/objects/toolbar/settings.c:214
  52 +msgid ""
  53 +"<small><b>The toolbar position only takes effect after restart</b></small>"
  54 +msgstr ""
  55 +
  56 +#: src/objects/application/actions/about.c:217 ui/windows.ui.xml:40
  57 +#: ui/windows.ui.xml:553 ui/macos.ui.xml:40 ui/macos.ui.xml:553
  58 +#: ui/linux.ui.xml:40 ui/linux.ui.xml:553
  59 +msgid "About PW3270"
  60 +msgstr ""
  61 +
  62 +#: src/objects/actions/abstract.c:93
  63 +msgid "Action Name"
  64 +msgstr ""
  65 +
  66 +#: src/objects/window/window.c:205
  67 +msgid "Action Names"
  68 +msgstr ""
  69 +
  70 +#: ui/windows.ui.xml:525 ui/windows.ui.xml:917 ui/windows.ui.xml:1032
  71 +#: ui/macos.ui.xml:525 ui/macos.ui.xml:917 ui/macos.ui.xml:1032
  72 +#: ui/linux.ui.xml:525 ui/linux.ui.xml:917 ui/linux.ui.xml:1032
  73 +msgid "Alert sound"
  74 +msgstr ""
  75 +
  76 +#: src/main/tools.c:79
  77 +msgid "All files"
  78 +msgstr ""
  79 +
  80 +#: ui/windows.ui.xml:252 ui/windows.ui.xml:691 ui/macos.ui.xml:252
  81 +#: ui/macos.ui.xml:691 ui/linux.ui.xml:252 ui/linux.ui.xml:691
  82 +msgid "Append to copy"
  83 +msgstr ""
  84 +
  85 +#: src/objects/application/actions/about.c:160
  86 +msgid "Apple version"
  87 +msgstr ""
  88 +
  89 +#: ui/windows.ui.xml:385 ui/windows.ui.xml:665 ui/macos.ui.xml:385
  90 +#: ui/macos.ui.xml:665 ui/linux.ui.xml:385 ui/linux.ui.xml:665
  91 +msgid "Application"
  92 +msgstr ""
  93 +
  94 +#: src/objects/window/header-settings.c:93
  95 +msgid "Application menu"
  96 +msgstr ""
  97 +
  98 +#: src/objects/application/actions/preferences.c:76 ui/windows.ui.xml:84
  99 +#: ui/macos.ui.xml:84 ui/linux.ui.xml:84
  100 +msgid "Application preferences"
  101 +msgstr ""
  102 +
  103 +#: src/objects/window/page.c:264
  104 +msgid "Apply"
  105 +msgstr ""
  106 +
  107 +#: ui/windows.ui.xml:500 ui/macos.ui.xml:500 ui/linux.ui.xml:500
  108 +msgid "Auto-Reconnect"
  109 +msgstr ""
  110 +
  111 +#: src/objects/toolbar/settings.c:118 src/objects/settings/actionview.c:73
  112 +msgid "Available"
  113 +msgstr ""
  114 +
  115 +#: src/objects/application/actions/about.c:163
  116 +msgid "Based on X3270 from"
  117 +msgstr ""
  118 +
  119 +#: ui/windows.ui.xml:490 ui/windows.ui.xml:946 ui/macos.ui.xml:490
  120 +#: ui/macos.ui.xml:946 ui/linux.ui.xml:490 ui/linux.ui.xml:946
  121 +msgid "Blank Fill"
  122 +msgstr ""
  123 +
  124 +#: ui/windows.ui.xml:455 ui/macos.ui.xml:455 ui/linux.ui.xml:455
  125 +msgid "Blinking Cursor"
  126 +msgstr ""
  127 +
  128 +#: ui/windows.ui.xml:505 ui/macos.ui.xml:505 ui/linux.ui.xml:505
  129 +msgid "Bold"
  130 +msgstr ""
  131 +
  132 +#: src/objects/toolbar/models.c:134
  133 +msgid "Bottom"
  134 +msgstr ""
  135 +
  136 +#: src/objects/application/actions/open.c:104 src/objects/window/terminal.c:143
  137 +#: src/objects/window/terminal.c:197
  138 +msgid "Can't load session file"
  139 +msgstr ""
  140 +
  141 +#: src/objects/os/windows/open.c:133
  142 +msgid "Can't load session preferences"
  143 +msgstr ""
  144 +
  145 +#: src/objects/settings/gsettings.c:128
  146 +msgid "Can't load system settings"
  147 +msgstr ""
  148 +
  149 +#: src/objects/application/actions/open.c:99 src/objects/window/terminal.c:192
  150 +#, c-format
  151 +msgid "Can't use \"%s\""
  152 +msgstr ""
  153 +
  154 +#: src/objects/window/terminal.c:138
  155 +msgid "Can't use default session file"
  156 +msgstr ""
  157 +
  158 +#: src/objects/application/actions/open.c:50 src/objects/window/page.c:265
  159 +msgid "Cancel"
  160 +msgstr ""
  161 +
  162 +#: src/objects/application/actions/preferences.c:78
  163 +msgid "Change the application preferences"
  164 +msgstr ""
  165 +
  166 +#: src/objects/window/header-settings.c:64
  167 +msgid "Change the position of the title bar icons"
  168 +msgstr ""
  169 +
  170 +#: src/objects/window/actions/sessionproperties.c:37
  171 +msgid "Change the preferences for the active session"
  172 +msgstr ""
  173 +
  174 +#: ui/windows.ui.xml:305 ui/windows.ui.xml:725 ui/windows.ui.xml:867
  175 +#: ui/macos.ui.xml:305 ui/macos.ui.xml:725 ui/macos.ui.xml:867
  176 +#: ui/linux.ui.xml:305 ui/linux.ui.xml:725 ui/linux.ui.xml:867
  177 +msgid "Clear"
  178 +msgstr ""
  179 +
  180 +#: ui/windows.ui.xml:400 ui/macos.ui.xml:400 ui/linux.ui.xml:400
  181 +msgid "Clipboard"
  182 +msgstr ""
  183 +
  184 +#: ui/windows.ui.xml:150 ui/windows.ui.xml:187 ui/windows.ui.xml:617
  185 +#: ui/windows.ui.xml:654 ui/macos.ui.xml:150 ui/macos.ui.xml:187
  186 +#: ui/macos.ui.xml:617 ui/macos.ui.xml:654 ui/linux.ui.xml:150
  187 +#: ui/linux.ui.xml:187 ui/linux.ui.xml:617 ui/linux.ui.xml:654
  188 +msgid "Clipboard contents"
  189 +msgstr ""
  190 +
  191 +#: src/objects/application/actions/window.c:65
  192 +msgid "Close all windows and exit application"
  193 +msgstr ""
  194 +
  195 +#: src/objects/window/actions/close.c:52
  196 +msgid "Close the window"
  197 +msgstr ""
  198 +
  199 +#: src/objects/window/actions/close.c:51 ui/windows.ui.xml:217
  200 +#: ui/windows.ui.xml:813 ui/windows.ui.xml:1011 ui/windows.ui.xml:1118
  201 +#: ui/macos.ui.xml:217 ui/macos.ui.xml:813 ui/macos.ui.xml:1011
  202 +#: ui/macos.ui.xml:1118 ui/linux.ui.xml:217 ui/linux.ui.xml:813
  203 +#: ui/linux.ui.xml:1011 ui/linux.ui.xml:1118
  204 +msgid "Close window"
  205 +msgstr ""
  206 +
  207 +#: src/objects/os/linux/savedesktopicon.c:101
  208 +msgid "Comment"
  209 +msgstr ""
  210 +
  211 +#: src/objects/window/actions/connect.c:59
  212 +msgid "Connect"
  213 +msgstr ""
  214 +
  215 +#: ui/windows.ui.xml:450 ui/macos.ui.xml:450 ui/linux.ui.xml:450
  216 +msgid "Connect on startup"
  217 +msgstr ""
  218 +
  219 +#: src/objects/window/actions/connect.c:60
  220 +msgid "Connect to host"
  221 +msgstr ""
  222 +
  223 +#: src/objects/window/window.c:778 src/objects/window/page.c:218
  224 +msgid "Connected to host"
  225 +msgstr ""
  226 +
  227 +#: src/objects/application/actions/about.c:161
  228 +msgid "Contributors"
  229 +msgstr ""
  230 +
  231 +#: ui/windows.ui.xml:237 ui/windows.ui.xml:686 ui/macos.ui.xml:237
  232 +#: ui/macos.ui.xml:686 ui/linux.ui.xml:237 ui/linux.ui.xml:686
  233 +msgid "Copy"
  234 +msgstr ""
  235 +
  236 +#: ui/windows.ui.xml:706 ui/macos.ui.xml:706 ui/linux.ui.xml:706
  237 +msgid "Copy as HTML"
  238 +msgstr ""
  239 +
  240 +#: ui/windows.ui.xml:711 ui/macos.ui.xml:711 ui/linux.ui.xml:711
  241 +msgid "Copy as image"
  242 +msgstr ""
  243 +
  244 +#: ui/windows.ui.xml:247 ui/windows.ui.xml:701 ui/macos.ui.xml:247
  245 +#: ui/macos.ui.xml:701 ui/linux.ui.xml:247 ui/linux.ui.xml:701
  246 +msgid "Copy as table"
  247 +msgstr ""
  248 +
  249 +#: ui/windows.ui.xml:242 ui/windows.ui.xml:696 ui/macos.ui.xml:242
  250 +#: ui/macos.ui.xml:696 ui/linux.ui.xml:242 ui/linux.ui.xml:696
  251 +msgid "Copy as text"
  252 +msgstr ""
  253 +
  254 +#: src/objects/application/actions/about.c:167
  255 +msgid "Copyright © 2008 Banco do Brasil S.A."
  256 +msgstr ""
  257 +
  258 +#: src/objects/os/linux/savedesktopicon.c:114
  259 +#: src/objects/os/windows/savedesktopicon.c:107
  260 +#: src/objects/os/macos/savedesktopicon.c:54
  261 +msgid "Create shortcut for the current session"
  262 +msgstr ""
  263 +
  264 +#: ui/windows.ui.xml:475 ui/windows.ui.xml:902 ui/macos.ui.xml:475
  265 +#: ui/macos.ui.xml:902 ui/linux.ui.xml:475 ui/linux.ui.xml:902
  266 +msgid "Cross hair cursor"
  267 +msgstr ""
  268 +
  269 +#: ui/windows.ui.xml:177 ui/windows.ui.xml:644 ui/macos.ui.xml:177
  270 +#: ui/macos.ui.xml:644 ui/linux.ui.xml:177 ui/linux.ui.xml:644
  271 +msgid "Current Screen"
  272 +msgstr ""
  273 +
  274 +#: ui/windows.ui.xml:140 ui/windows.ui.xml:607 ui/macos.ui.xml:140
  275 +#: ui/macos.ui.xml:607 ui/linux.ui.xml:140 ui/linux.ui.xml:607
  276 +msgid "Current screen"
  277 +msgstr ""
  278 +
  279 +#: ui/windows.ui.xml:670 ui/macos.ui.xml:670 ui/linux.ui.xml:670
  280 +msgid "Current session"
  281 +msgstr ""
  282 +
  283 +#: ui/windows.ui.xml:257 ui/windows.ui.xml:716 ui/macos.ui.xml:257
  284 +#: ui/macos.ui.xml:716 ui/linux.ui.xml:257 ui/linux.ui.xml:716
  285 +msgid "Cut"
  286 +msgstr ""
  287 +
  288 +#: ui/windows.ui.xml:315 ui/windows.ui.xml:735 ui/windows.ui.xml:877
  289 +#: ui/macos.ui.xml:315 ui/macos.ui.xml:735 ui/macos.ui.xml:877
  290 +#: ui/linux.ui.xml:315 ui/linux.ui.xml:735 ui/linux.ui.xml:877
  291 +msgid "Delete Field"
  292 +msgstr ""
  293 +
  294 +#: src/objects/os/windows/savedesktopicon.c:80
  295 +msgid "Description"
  296 +msgstr ""
  297 +
  298 +#: ui/windows.ui.xml:808 ui/windows.ui.xml:1006 ui/macos.ui.xml:808
  299 +#: ui/macos.ui.xml:1006 ui/linux.ui.xml:808 ui/linux.ui.xml:1006
  300 +msgid "Disconnect"
  301 +msgstr ""
  302 +
  303 +#: src/objects/window/window.c:778 src/objects/window/window.c:805
  304 +#: src/objects/window/page.c:207
  305 +msgid "Disconnected from host"
  306 +msgstr ""
  307 +
  308 +#: ui/windows.ui.xml:540 ui/windows.ui.xml:929 ui/windows.ui.xml:1045
  309 +#: ui/macos.ui.xml:540 ui/macos.ui.xml:929 ui/macos.ui.xml:1045
  310 +#: ui/linux.ui.xml:540 ui/linux.ui.xml:929 ui/linux.ui.xml:1045
  311 +msgid "Dynamic font spacing"
  312 +msgstr ""
  313 +
  314 +#: src/objects/keypad/element.c:128
  315 +msgid "Element col"
  316 +msgstr ""
  317 +
  318 +#: src/objects/keypad/element.c:152
  319 +msgid "Element height in rows"
  320 +msgstr ""
  321 +
  322 +#: src/objects/keypad/element.c:116
  323 +msgid "Element row"
  324 +msgstr ""
  325 +
  326 +#: src/objects/keypad/element.c:140
  327 +msgid "Element width in columns"
  328 +msgstr ""
  329 +
  330 +#: src/objects/actions/abstract.c:140
  331 +msgid "Enabled"
  332 +msgstr ""
  333 +
  334 +#: src/objects/settings/actionview.c:78
  335 +msgid "End"
  336 +msgstr ""
  337 +
  338 +#: ui/windows.ui.xml:310 ui/windows.ui.xml:730 ui/windows.ui.xml:872
  339 +#: ui/macos.ui.xml:310 ui/macos.ui.xml:730 ui/macos.ui.xml:872
  340 +#: ui/linux.ui.xml:310 ui/linux.ui.xml:730 ui/linux.ui.xml:872
  341 +msgid "Erase input"
  342 +msgstr ""
  343 +
  344 +#: ui/windows.ui.xml:320 ui/windows.ui.xml:740 ui/windows.ui.xml:882
  345 +#: ui/macos.ui.xml:320 ui/macos.ui.xml:740 ui/macos.ui.xml:882
  346 +#: ui/linux.ui.xml:320 ui/linux.ui.xml:740 ui/linux.ui.xml:882
  347 +msgid "Erase to end of field"
  348 +msgstr ""
  349 +
  350 +#: ui/windows.ui.xml:325 ui/windows.ui.xml:745 ui/windows.ui.xml:887
  351 +#: ui/macos.ui.xml:325 ui/macos.ui.xml:745 ui/macos.ui.xml:887
  352 +#: ui/linux.ui.xml:325 ui/linux.ui.xml:745 ui/linux.ui.xml:887
  353 +msgid "Erase to end of line"
  354 +msgstr ""
  355 +
  356 +#: src/objects/os/windows/open.c:140
  357 +msgid "Error starting session"
  358 +msgstr ""
  359 +
  360 +#: ui/windows.ui.xml:353 ui/macos.ui.xml:353 ui/linux.ui.xml:353
  361 +msgid "Field attributes"
  362 +msgstr ""
  363 +
  364 +#: src/objects/os/windows/savedesktopicon.c:219
  365 +msgid "File for session preferences"
  366 +msgstr ""
  367 +
  368 +#: ui/windows.ui.xml:470 ui/macos.ui.xml:470 ui/linux.ui.xml:470
  369 +msgid "Full Screen"
  370 +msgstr ""
  371 +
  372 +#: ui/windows.ui.xml:779 ui/windows.ui.xml:955 ui/windows.ui.xml:1050
  373 +#: ui/macos.ui.xml:779 ui/macos.ui.xml:955 ui/macos.ui.xml:1050
  374 +#: ui/linux.ui.xml:779 ui/linux.ui.xml:955 ui/linux.ui.xml:1050
  375 +msgid "Full screen"
  376 +msgstr ""
  377 +
  378 +#: src/objects/os/linux/savedesktopicon.c:94
  379 +msgid "Generic name"
  380 +msgstr ""
  381 +
  382 +#: ui/windows.ui.xml:37 ui/windows.ui.xml:550 ui/macos.ui.xml:37
  383 +#: ui/macos.ui.xml:550 ui/linux.ui.xml:37 ui/linux.ui.xml:550
  384 +msgid "Help"
  385 +msgstr ""
  386 +
  387 +#: ui/windows.ui.xml:390 ui/macos.ui.xml:390 ui/linux.ui.xml:390
  388 +msgid "Host and Emulation settings"
  389 +msgstr ""
  390 +
  391 +#: src/objects/application/actions/about.c:119 src/objects/window/window.c:564
  392 +#: src/objects/os/linux/savedesktopicon.c:102
  393 +#: src/objects/os/windows/savedesktopicon.c:269
  394 +msgid "IBM 3270 Terminal emulator"
  395 +msgstr ""
  396 +
  397 +#: src/objects/actions/view.c:89
  398 +msgid "Icon"
  399 +msgstr ""
  400 +
  401 +#: src/objects/actions/abstract.c:101
  402 +msgid "Icon Name"
  403 +msgstr ""
  404 +
  405 +#: src/objects/toolbar/settings.c:54
  406 +msgid "Icon Size"
  407 +msgstr ""
  408 +
  409 +#: src/objects/toolbar/settings.c:61
  410 +msgid "Icon Style"
  411 +msgstr ""
  412 +
  413 +#: src/objects/toolbar/models.c:52
  414 +msgid "Icon _size"
  415 +msgstr ""
  416 +
  417 +#: src/objects/toolbar/models.c:108
  418 +msgid "Icon type"
  419 +msgstr ""
  420 +
  421 +#: src/objects/toolbar/models.c:97
  422 +msgid "Icons & text"
  423 +msgstr ""
  424 +
  425 +#: src/objects/toolbar/models.c:87
  426 +msgid "Icons only"
  427 +msgstr ""
  428 +
  429 +#: src/objects/actions/abstract.c:141
  430 +msgid "If the action can be activated"
  431 +msgstr ""
  432 +
  433 +#: ui/windows.ui.xml:1022 ui/macos.ui.xml:1022 ui/linux.ui.xml:1022
  434 +msgid "Insert"
  435 +msgstr ""
  436 +
  437 +#: src/objects/keypad/attribute.c:79
  438 +msgid "Invalid or unknown property type"
  439 +msgstr ""
  440 +
  441 +#: src/objects/settings/actionview.c:79
  442 +msgid "Items packed from the end to the start"
  443 +msgstr ""
  444 +
  445 +#: src/objects/settings/actionview.c:69
  446 +msgid "Items packed from the start to the end"
  447 +msgstr ""
  448 +
  449 +#: src/objects/toolbar/settings.c:112
  450 +msgid "Itens"
  451 +msgstr ""
  452 +
  453 +#: ui/windows.ui.xml:515 ui/macos.ui.xml:515 ui/linux.ui.xml:515
  454 +msgid "Keep selected"
  455 +msgstr ""
  456 +
  457 +#: ui/windows.ui.xml:395 ui/macos.ui.xml:395 ui/linux.ui.xml:395
  458 +msgid "Keyboard accelerators"
  459 +msgstr ""
  460 +
  461 +#: src/objects/keypad/model.c:103
  462 +msgid "Keypad Label"
  463 +msgstr ""
  464 +
  465 +#: src/objects/keypad/model.c:93
  466 +msgid "Keypad Name"
  467 +msgstr ""
  468 +
  469 +#: src/objects/keypad/model.c:136
  470 +msgid "Keypad height in rows"
  471 +msgstr ""
  472 +
  473 +#: src/objects/keypad/model.c:124
  474 +msgid "Keypad width in columns"
  475 +msgstr ""
  476 +
  477 +#: src/main/builder.c:112
  478 +msgid "Keypads"
  479 +msgstr ""
  480 +
  481 +#: src/objects/application/actions/about.c:171
  482 +msgid "LICENSE"
  483 +msgstr ""
  484 +
  485 +#: src/objects/actions/view.c:98
  486 +msgid "Label"
  487 +msgstr ""
  488 +
  489 +#: src/objects/toolbar/models.c:66
  490 +msgid "Large"
  491 +msgstr ""
  492 +
  493 +#: src/objects/toolbar/models.c:131
  494 +msgid "Left"
  495 +msgstr ""
  496 +
  497 +#: src/objects/settings/actionview.c:74
  498 +msgid "List of the available and unpacked actions"
  499 +msgstr ""
  500 +
  501 +#: src/objects/application/application.c:167
  502 +msgid "Log name"
  503 +msgstr ""
  504 +
  505 +#: ui/windows.ui.xml:72 ui/macos.ui.xml:72 ui/linux.ui.xml:72
  506 +msgid "Main Menu"
  507 +msgstr ""
  508 +
  509 +#: ui/windows.ui.xml:67 ui/macos.ui.xml:67 ui/linux.ui.xml:67
  510 +msgid "Main Toolbar"
  511 +msgstr ""
  512 +
  513 +#: ui/windows.ui.xml:1093 ui/macos.ui.xml:1093 ui/linux.ui.xml:1093
  514 +msgid "Main menu"
  515 +msgstr ""
  516 +
  517 +#: src/objects/application/actions/about.c:159
  518 +msgid "Maintainers"
  519 +msgstr ""
  520 +
  521 +#: ui/windows.ui.xml:348 ui/macos.ui.xml:348 ui/linux.ui.xml:348
  522 +msgid "Menu"
  523 +msgstr ""
  524 +
  525 +#: ui/windows.ui.xml:419 ui/windows.ui.xml:1059 ui/macos.ui.xml:419
  526 +#: ui/macos.ui.xml:1059 ui/linux.ui.xml:419 ui/linux.ui.xml:1059
  527 +msgid "Model 2 - 80x24"
  528 +msgstr ""
  529 +
  530 +#: ui/windows.ui.xml:424 ui/windows.ui.xml:1064 ui/macos.ui.xml:424
  531 +#: ui/macos.ui.xml:1064 ui/linux.ui.xml:424 ui/linux.ui.xml:1064
  532 +msgid "Model 3 - 80x32"
  533 +msgstr ""
  534 +
  535 +#: ui/windows.ui.xml:429 ui/windows.ui.xml:1069 ui/macos.ui.xml:429
  536 +#: ui/macos.ui.xml:1069 ui/linux.ui.xml:429 ui/linux.ui.xml:1069
  537 +msgid "Model 4 - 80x43"
  538 +msgstr ""
  539 +
  540 +#: ui/windows.ui.xml:434 ui/windows.ui.xml:1074 ui/macos.ui.xml:434
  541 +#: ui/macos.ui.xml:1074 ui/linux.ui.xml:434 ui/linux.ui.xml:1074
  542 +msgid "Model 5 - 132x27"
  543 +msgstr ""
  544 +
  545 +#: ui/windows.ui.xml:460 ui/windows.ui.xml:924 ui/macos.ui.xml:460
  546 +#: ui/macos.ui.xml:924 ui/linux.ui.xml:460 ui/linux.ui.xml:924
  547 +msgid "Monocase"
  548 +msgstr ""
  549 +
  550 +#: ui/windows.ui.xml:535 ui/macos.ui.xml:535 ui/linux.ui.xml:535
  551 +msgid "Network keep alive"
  552 +msgstr ""
  553 +
  554 +#: src/objects/window/page.c:275
  555 +msgid "New session name"
  556 +msgstr ""
  557 +
  558 +#: src/objects/application/actions/window.c:84
  559 +msgid "New tab"
  560 +msgstr ""
  561 +
  562 +#: src/objects/application/actions/window.c:85
  563 +msgid "New tab with default session"
  564 +msgstr ""
  565 +
  566 +#: src/objects/application/actions/window.c:104
  567 +msgid "New window"
  568 +msgstr ""
  569 +
  570 +#: src/objects/application/actions/window.c:105
  571 +msgid "New window with default session"
  572 +msgstr ""
  573 +
  574 +#: src/objects/application/actions/open.c:49
  575 +msgid "Open Session"
  576 +msgstr ""
  577 +
  578 +#: ui/windows.ui.xml:56 ui/macos.ui.xml:56 ui/linux.ui.xml:56
  579 +msgid "Open in New Tab"
  580 +msgstr ""
  581 +
  582 +#: ui/windows.ui.xml:51 ui/macos.ui.xml:51 ui/linux.ui.xml:51
  583 +msgid "Open in New Window"
  584 +msgstr ""
  585 +
  586 +#: src/objects/application/actions/open.c:201
  587 +msgid "Open in new tab"
  588 +msgstr ""
  589 +
  590 +#: src/objects/application/actions/open.c:189
  591 +msgid "Open in new window"
  592 +msgstr ""
  593 +
  594 +#: src/objects/application/actions/open.c:176
  595 +msgid "Open session"
  596 +msgstr ""
  597 +
  598 +#: src/objects/application/actions/open.c:202
  599 +msgid "Open session in New Tab"
  600 +msgstr ""
  601 +
  602 +#: src/objects/application/actions/open.c:190
  603 +msgid "Open session in New window"
  604 +msgstr ""
  605 +
  606 +#: src/objects/application/actions/open.c:177
  607 +msgid "Open session on the active terminal"
  608 +msgstr ""
  609 +
  610 +#: ui/windows.ui.xml:447 ui/windows.ui.xml:755 ui/windows.ui.xml:897
  611 +#: ui/windows.ui.xml:1042 ui/macos.ui.xml:447 ui/macos.ui.xml:755
  612 +#: ui/macos.ui.xml:897 ui/macos.ui.xml:1042 ui/linux.ui.xml:447
  613 +#: ui/linux.ui.xml:755 ui/linux.ui.xml:897 ui/linux.ui.xml:1042
  614 +msgid "Options"
  615 +msgstr ""
  616 +
  617 +#: src/objects/actions/abstract.c:124
  618 +msgid "Parameter Type"
  619 +msgstr ""
  620 +
  621 +#: ui/windows.ui.xml:262 ui/windows.ui.xml:829 ui/macos.ui.xml:262
  622 +#: ui/macos.ui.xml:829 ui/linux.ui.xml:262 ui/linux.ui.xml:829
  623 +msgid "Paste from clipboard"
  624 +msgstr ""
  625 +
  626 +#: ui/windows.ui.xml:272 ui/windows.ui.xml:839 ui/macos.ui.xml:272
  627 +#: ui/macos.ui.xml:839 ui/linux.ui.xml:272 ui/linux.ui.xml:839
  628 +msgid "Paste from text file"
  629 +msgstr ""
  630 +
  631 +#: ui/windows.ui.xml:267 ui/windows.ui.xml:834 ui/macos.ui.xml:267
  632 +#: ui/macos.ui.xml:834 ui/linux.ui.xml:267 ui/linux.ui.xml:834
  633 +msgid "Paste next"
  634 +msgstr ""
  635 +
  636 +#: ui/windows.ui.xml:485 ui/windows.ui.xml:941 ui/macos.ui.xml:485
  637 +#: ui/macos.ui.xml:941 ui/linux.ui.xml:485 ui/linux.ui.xml:941
  638 +msgid "Paste with left margin"
  639 +msgstr ""
  640 +
  641 +#: src/objects/os/linux/savedesktopicon.c:71
  642 +#: src/objects/os/windows/savedesktopicon.c:74
  643 +msgid "Path for the new shortcut"
  644 +msgstr ""
  645 +
  646 +#: src/objects/toolbar/models.c:125
  647 +msgid "Position"
  648 +msgstr ""
  649 +
  650 +#: ui/windows.ui.xml:662 ui/macos.ui.xml:662 ui/linux.ui.xml:662
  651 +msgid "Preferences"
  652 +msgstr ""
  653 +
  654 +#: ui/windows.ui.xml:174 ui/windows.ui.xml:641 ui/macos.ui.xml:174
  655 +#: ui/macos.ui.xml:641 ui/linux.ui.xml:174 ui/linux.ui.xml:641
  656 +msgid "Print"
  657 +msgstr ""
  658 +
  659 +#: ui/windows.ui.xml:992 ui/macos.ui.xml:992 ui/linux.ui.xml:992
  660 +msgid "Print screen"
  661 +msgstr ""
  662 +
  663 +#: ui/windows.ui.xml:795 ui/macos.ui.xml:795 ui/linux.ui.xml:795
  664 +msgid "Print selected"
  665 +msgstr ""
  666 +
  667 +#: src/objects/keypad/attribute.c:116
  668 +#, c-format
  669 +msgid "Property \"%s\" is invalid for this object"
  670 +msgstr ""
  671 +
  672 +#: src/objects/application/actions/window.c:64 ui/windows.ui.xml:89
  673 +#: ui/macos.ui.xml:89 ui/linux.ui.xml:89
  674 +msgid "Quit"
  675 +msgstr ""
  676 +
  677 +#: src/objects/window/page.c:262
  678 +msgid "Rename Session"
  679 +msgstr ""
  680 +
  681 +#: ui/windows.ui.xml:296 ui/windows.ui.xml:858 ui/macos.ui.xml:296
  682 +#: ui/macos.ui.xml:858 ui/linux.ui.xml:296 ui/linux.ui.xml:858
  683 +msgid "Reselect"
  684 +msgstr ""
  685 +
  686 +#: ui/windows.ui.xml:480 ui/windows.ui.xml:912 ui/macos.ui.xml:480
  687 +#: ui/macos.ui.xml:912 ui/linux.ui.xml:480 ui/linux.ui.xml:912
  688 +msgid "Resize on alternate screen"
  689 +msgstr ""
  690 +
  691 +#: src/objects/toolbar/models.c:137
  692 +msgid "Right"
  693 +msgstr ""
  694 +
  695 +#: ui/windows.ui.xml:135 ui/windows.ui.xml:602 ui/macos.ui.xml:135
  696 +#: ui/macos.ui.xml:602 ui/linux.ui.xml:135 ui/linux.ui.xml:602
  697 +msgid "Save"
  698 +msgstr ""
  699 +
  700 +#: src/objects/actions/save.c:77
  701 +msgid "Save current session preferences to file"
  702 +msgstr ""
  703 +
  704 +#: ui/windows.ui.xml:987 ui/macos.ui.xml:987 ui/linux.ui.xml:987
  705 +msgid "Save screen"
  706 +msgstr ""
  707 +
  708 +#: ui/windows.ui.xml:790 ui/macos.ui.xml:790 ui/linux.ui.xml:790
  709 +msgid "Save selected"
  710 +msgstr ""
  711 +
  712 +#: src/objects/actions/save.c:75 src/objects/actions/save.c:164
  713 +msgid "Save session preferences"
  714 +msgstr ""
  715 +
  716 +#: src/objects/os/linux/savedesktopicon.c:113
  717 +#: src/objects/os/windows/savedesktopicon.c:106
  718 +#: src/objects/os/macos/savedesktopicon.c:53
  719 +msgid "Save session shortcut"
  720 +msgstr ""
  721 +
  722 +#: src/objects/os/linux/savedesktopicon.c:230
  723 +msgid "Save to session filename"
  724 +msgstr ""
  725 +
  726 +#: src/objects/os/linux/savedesktopicon.c:202
  727 +msgid "Save to shortcut file"
  728 +msgstr ""
  729 +
  730 +#: src/objects/os/windows/savedesktopicon.c:184
  731 +msgid "Save to windows shortcut"
  732 +msgstr ""
  733 +
  734 +#: ui/windows.ui.xml:416 ui/windows.ui.xml:1056 ui/macos.ui.xml:416
  735 +#: ui/macos.ui.xml:1056 ui/linux.ui.xml:416 ui/linux.ui.xml:1056
  736 +msgid "Screen size"
  737 +msgstr ""
  738 +
  739 +#: ui/windows.ui.xml:286 ui/windows.ui.xml:853 ui/macos.ui.xml:286
  740 +#: ui/macos.ui.xml:853 ui/linux.ui.xml:286 ui/linux.ui.xml:853
  741 +msgid "Select Field"
  742 +msgstr ""
  743 +
  744 +#: ui/windows.ui.xml:281 ui/windows.ui.xml:848 ui/macos.ui.xml:281
  745 +#: ui/macos.ui.xml:848 ui/linux.ui.xml:281 ui/linux.ui.xml:848
  746 +msgid "Select all"
  747 +msgstr ""
  748 +
  749 +#: ui/windows.ui.xml:495 ui/windows.ui.xml:760 ui/macos.ui.xml:495
  750 +#: ui/macos.ui.xml:760 ui/linux.ui.xml:495 ui/linux.ui.xml:760
  751 +msgid "Select by rectangles"
  752 +msgstr ""
  753 +
  754 +#: src/objects/toolbar/settings.c:112
  755 +msgid "Select the toolbar itens"
  756 +msgstr ""
  757 +
  758 +#: src/objects/toolbar/settings.c:117
  759 +msgid "Selected"
  760 +msgstr ""
  761 +
  762 +#: ui/windows.ui.xml:145 ui/windows.ui.xml:182 ui/windows.ui.xml:612
  763 +#: ui/windows.ui.xml:649 ui/macos.ui.xml:145 ui/macos.ui.xml:182
  764 +#: ui/macos.ui.xml:612 ui/macos.ui.xml:649 ui/linux.ui.xml:145
  765 +#: ui/linux.ui.xml:182 ui/linux.ui.xml:612 ui/linux.ui.xml:649
  766 +msgid "Selected area"
  767 +msgstr ""
  768 +
  769 +#: src/objects/window/actions/filetransfer.c:45
  770 +msgid "Send/Receive"
  771 +msgstr ""
  772 +
  773 +#: src/objects/window/actions/filetransfer.c:46 ui/windows.ui.xml:196
  774 +#: ui/windows.ui.xml:997 ui/macos.ui.xml:196 ui/macos.ui.xml:997
  775 +#: ui/linux.ui.xml:196 ui/linux.ui.xml:997
  776 +msgid "Send/Receive files"
  777 +msgstr ""
  778 +
  779 +#: src/objects/toolbar/settings.c:252 src/objects/toolbar/settings.c:262
  780 +msgid "Separator"
  781 +msgstr ""
  782 +
  783 +#: ui/windows.ui.xml:48 ui/windows.ui.xml:584 ui/macos.ui.xml:48
  784 +#: ui/macos.ui.xml:584 ui/linux.ui.xml:48 ui/linux.ui.xml:584
  785 +msgid "Session"
  786 +msgstr ""
  787 +
  788 +#: ui/windows.ui.xml:77 ui/windows.ui.xml:978 ui/windows.ui.xml:1098
  789 +#: ui/macos.ui.xml:77 ui/macos.ui.xml:978 ui/macos.ui.xml:1098
  790 +#: ui/linux.ui.xml:77 ui/linux.ui.xml:978 ui/linux.ui.xml:1098
  791 +msgid "Session Trace"
  792 +msgstr ""
  793 +
  794 +#: src/objects/actions/save.c:63 src/objects/os/linux/savedesktopicon.c:85
  795 +#: src/objects/os/windows/savedesktopicon.c:94
  796 +msgid "Session file"
  797 +msgstr ""
  798 +
  799 +#: ui/windows.ui.xml:127 ui/windows.ui.xml:594 ui/macos.ui.xml:127
  800 +#: ui/macos.ui.xml:594 ui/linux.ui.xml:127 ui/linux.ui.xml:594
  801 +msgid "Session in New Tab"
  802 +msgstr ""
  803 +
  804 +#: ui/windows.ui.xml:122 ui/windows.ui.xml:589 ui/macos.ui.xml:122
  805 +#: ui/macos.ui.xml:589 ui/linux.ui.xml:122 ui/linux.ui.xml:589
  806 +msgid "Session in new window"
  807 +msgstr ""
  808 +
  809 +#: src/objects/actions/save.c:56 src/objects/os/linux/savedesktopicon.c:77
  810 +#: src/objects/os/windows/savedesktopicon.c:86
  811 +msgid "Session name"
  812 +msgstr ""
  813 +
  814 +#: src/objects/window/actions/sessionproperties.c:36 ui/windows.ui.xml:164
  815 +#: ui/windows.ui.xml:631 ui/windows.ui.xml:1112 ui/macos.ui.xml:164
  816 +#: ui/macos.ui.xml:631 ui/macos.ui.xml:1112 ui/linux.ui.xml:164
  817 +#: ui/linux.ui.xml:631 ui/linux.ui.xml:1112
  818 +msgid "Session preferences"
  819 +msgstr ""
  820 +
  821 +#: src/objects/application/application.c:249
  822 +msgid "Set default log file name"
  823 +msgstr ""
  824 +
  825 +#: src/objects/application/application.c:239
  826 +msgid "Set the user-interface type"
  827 +msgstr ""
  828 +
  829 +#: ui/windows.ui.xml:382 ui/macos.ui.xml:382 ui/linux.ui.xml:382
  830 +msgid "Settings"
  831 +msgstr ""
  832 +
  833 +#: src/objects/toolbar/settings.c:182
  834 +msgid "Setup the toolbar style and position"
  835 +msgstr ""
  836 +
  837 +#: src/objects/window/header-settings.c:53
  838 +msgid "Setup title bar"
  839 +msgstr ""
  840 +
  841 +#: src/objects/toolbar/toolbar.c:213 src/objects/toolbar/settings.c:94
  842 +msgid "Setup toolbar"
  843 +msgstr ""
  844 +
  845 +#: src/objects/os/linux/savedesktopicon.c:70
  846 +#: src/objects/os/windows/savedesktopicon.c:73
  847 +msgid "Shortcut file"
  848 +msgstr ""
  849 +
  850 +#: ui/windows.ui.xml:159 ui/windows.ui.xml:626 ui/macos.ui.xml:159
  851 +#: ui/macos.ui.xml:626 ui/linux.ui.xml:159 ui/linux.ui.xml:626
  852 +msgid "Shortcut for this session"
  853 +msgstr ""
  854 +
  855 +#: src/objects/os/linux/savedesktopicon.c:63
  856 +msgid "Shortcut name"
  857 +msgstr ""
  858 +
  859 +#: ui/windows.ui.xml:510 ui/macos.ui.xml:510 ui/linux.ui.xml:510
  860 +msgid "Show Underline"
  861 +msgstr ""
  862 +
  863 +#: ui/windows.ui.xml:774 ui/macos.ui.xml:774 ui/linux.ui.xml:774
  864 +msgid "Show menu"
  865 +msgstr ""
  866 +
  867 +#: ui/windows.ui.xml:769 ui/macos.ui.xml:769 ui/linux.ui.xml:769
  868 +msgid "Show toolbar"
  869 +msgstr ""
  870 +
  871 +#: src/objects/toolbar/models.c:61
  872 +msgid "Small"
  873 +msgstr ""
  874 +
  875 +#: ui/windows.ui.xml:520 ui/windows.ui.xml:936 ui/macos.ui.xml:520
  876 +#: ui/macos.ui.xml:936 ui/linux.ui.xml:520 ui/linux.ui.xml:936
  877 +msgid "Smart paste"
  878 +msgstr ""
  879 +
  880 +#: src/objects/os/linux/savedesktopicon.c:205
  881 +msgid "Standard desktop files"
  882 +msgstr ""
  883 +
  884 +#: src/objects/settings/actionview.c:68
  885 +msgid "Start"
  886 +msgstr ""
  887 +
  888 +#: src/objects/actions/abstract.c:152
  889 +msgid "State"
  890 +msgstr ""
  891 +
  892 +#: src/objects/actions/abstract.c:131
  893 +msgid "State Type"
  894 +msgstr ""
  895 +
  896 +#: src/objects/toolbar/settings.c:182
  897 +msgid "Style & Position"
  898 +msgstr ""
  899 +
  900 +#: src/objects/toolbar/models.c:114
  901 +msgid "Symbolic"
  902 +msgstr ""
  903 +
  904 +#: src/objects/toolbar/models.c:55 src/objects/toolbar/models.c:82
  905 +#: src/objects/toolbar/models.c:111
  906 +msgid "System default"
  907 +msgstr ""
  908 +
  909 +#: src/objects/settings/gsettings.c:133
  910 +msgid "System settings error"
  911 +msgstr ""
  912 +
  913 +#: src/main/tools.c:75
  914 +msgid "TN3270 Session Files"
  915 +msgstr ""
  916 +
  917 +#: src/objects/window/keyfile.c:241
  918 +msgid "TN3270 Session description"
  919 +msgstr ""
  920 +
  921 +#: ui/windows.ui.xml:111 ui/windows.ui.xml:573 ui/macos.ui.xml:111
  922 +#: ui/macos.ui.xml:573 ui/linux.ui.xml:111 ui/linux.ui.xml:573
  923 +msgid "Tab with default session"
  924 +msgstr ""
  925 +
  926 +#: ui/windows.ui.xml:405 ui/macos.ui.xml:405 ui/linux.ui.xml:405
  927 +msgid "Terminal colors"
  928 +msgstr ""
  929 +
  930 +#: ui/windows.ui.xml:442 ui/macos.ui.xml:442 ui/linux.ui.xml:442
  931 +msgid "Terminal font"
  932 +msgstr ""
  933 +
  934 +#: src/objects/toolbar/models.c:92
  935 +msgid "Text only"
  936 +msgstr ""
  937 +
  938 +#: src/objects/keypad/model.c:104 src/objects/keypad/element.c:106
  939 +msgid "The Label of the keypad"
  940 +msgstr ""
  941 +
  942 +#: src/objects/actions/abstract.c:109
  943 +msgid "The action label"
  944 +msgstr ""
  945 +
  946 +#: src/objects/actions/abstract.c:117
  947 +msgid "The action tooltip"
  948 +msgstr ""
  949 +
  950 +#: src/objects/application/application.c:153
  951 +msgid "The code of the User interface type"
  952 +msgstr ""
  953 +
  954 +#: src/objects/actions/save.c:64
  955 +msgid "The file to save the current session preferences"
  956 +msgstr ""
  957 +
  958 +#: src/objects/os/linux/savedesktopicon.c:86
  959 +#: src/objects/os/windows/savedesktopicon.c:95
  960 +msgid "The file with the session preferences for this shortcut"
  961 +msgstr ""
  962 +
  963 +#: src/objects/application/application.c:168
  964 +msgid "The full path of the default log file"
  965 +msgstr ""
  966 +
  967 +#: src/objects/actions/abstract.c:110
  968 +msgid "The label for the action"
  969 +msgstr ""
  970 +
  971 +#: src/objects/keypad/element.c:96
  972 +msgid "The name of associated action"
  973 +msgstr ""
  974 +
  975 +#: src/objects/window/window.c:206
  976 +msgid "The name of the actions in the header bar"
  977 +msgstr ""
  978 +
  979 +#: src/objects/toolbar/toolbar.c:98
  980 +msgid "The name of the actions in the toolbar"
  981 +msgstr ""
  982 +
  983 +#: src/objects/keypad/element.c:86
  984 +msgid "The name of the icon"
  985 +msgstr ""
  986 +
  987 +#: src/objects/actions/abstract.c:102
  988 +msgid "The name of the icon associated with the action"
  989 +msgstr ""
  990 +
  991 +#: src/objects/keypad/model.c:94
  992 +msgid "The name used to identify the keypad"
  993 +msgstr ""
  994 +
  995 +#: src/objects/actions/abstract.c:94
  996 +msgid "The name used to invoke the action"
  997 +msgstr ""
  998 +
  999 +#: src/objects/keypad/model.c:114
  1000 +msgid "The position of the keypad"
  1001 +msgstr ""
  1002 +
  1003 +#: src/objects/actions/save.c:57 src/objects/os/linux/savedesktopicon.c:79
  1004 +#: src/objects/os/windows/savedesktopicon.c:88
  1005 +msgid "The session name used in the window/tab title (empty for default)"
  1006 +msgstr ""
  1007 +
  1008 +#: src/objects/actions/abstract.c:153
  1009 +msgid "The state the action is in"
  1010 +msgstr ""
  1011 +
  1012 +#: src/objects/toolbar/toolbar.c:109
  1013 +msgid "The toolbar icon size"
  1014 +msgstr ""
  1015 +
  1016 +#: src/objects/toolbar/toolbar.c:135
  1017 +msgid "The toolbar icon type"
  1018 +msgstr ""
  1019 +
  1020 +#: src/objects/toolbar/toolbar.c:122
  1021 +msgid "The toolbar style"
  1022 +msgstr ""
  1023 +
  1024 +#: src/objects/actions/abstract.c:118
  1025 +msgid "The tooltip for the action"
  1026 +msgstr ""
  1027 +
  1028 +#: src/objects/actions/abstract.c:125
  1029 +msgid "The type of GVariant passed to activate()"
  1030 +msgstr ""
  1031 +
  1032 +#: src/objects/actions/abstract.c:132
  1033 +msgid "The type of the state kept by the action"
  1034 +msgstr ""
  1035 +
  1036 +#: src/objects/os/macos/savedesktopicon.c:68
  1037 +msgid "This action is not available in this platform"
  1038 +msgstr ""
  1039 +
  1040 +#: src/objects/window/header-settings.c:52
  1041 +msgid "Title bar"
  1042 +msgstr ""
  1043 +
  1044 +#: src/objects/window/header-settings.c:64
  1045 +msgid "Title bar actions"
  1046 +msgstr ""
  1047 +
  1048 +#: src/objects/toolbar/settings.c:93 ui/windows.ui.xml:343
  1049 +#: ui/windows.ui.xml:968 ui/windows.ui.xml:1088 ui/macos.ui.xml:343
  1050 +#: ui/macos.ui.xml:968 ui/macos.ui.xml:1088 ui/linux.ui.xml:343
  1051 +#: ui/linux.ui.xml:968 ui/linux.ui.xml:1088
  1052 +msgid "Toolbar"
  1053 +msgstr ""
  1054 +
  1055 +#: src/objects/toolbar/settings.c:68
  1056 +msgid "Toolbar Style"
  1057 +msgstr ""
  1058 +
  1059 +#: src/objects/toolbar/settings.c:75
  1060 +msgid "Toolbar position"
  1061 +msgstr ""
  1062 +
  1063 +#: src/objects/toolbar/models.c:79
  1064 +msgid "Toolbar s_tyle"
  1065 +msgstr ""
  1066 +
  1067 +#: src/objects/toolbar/models.c:128
  1068 +msgid "Top (system default)"
  1069 +msgstr ""
  1070 +
  1071 +#: ui/windows.ui.xml:973 ui/macos.ui.xml:973 ui/linux.ui.xml:973
  1072 +msgid "Top menu"
  1073 +msgstr ""
  1074 +
  1075 +#: ui/windows.ui.xml:338 ui/macos.ui.xml:338 ui/linux.ui.xml:338
  1076 +msgid "Trace"
  1077 +msgstr ""
  1078 +
  1079 +#: ui/windows.ui.xml:465 ui/windows.ui.xml:1027 ui/macos.ui.xml:465
  1080 +#: ui/macos.ui.xml:1027 ui/linux.ui.xml:465 ui/linux.ui.xml:1027
  1081 +msgid "Track Cursor"
  1082 +msgstr ""
  1083 +
  1084 +#: src/objects/application/application.c:152
  1085 +msgid "UI Type"
  1086 +msgstr ""
  1087 +
  1088 +#: src/objects/settings/gsettings.c:131
  1089 +msgid ""
  1090 +"Unable to initialize system settings. Application may crash in unexpected "
  1091 +"ways"
  1092 +msgstr ""
  1093 +
  1094 +#: src/objects/os/windows/open.c:137
  1095 +#, c-format
  1096 +msgid "Unable to load session preferences from '%s'"
  1097 +msgstr ""
  1098 +
  1099 +#: ui/windows.ui.xml:291 ui/windows.ui.xml:800 ui/macos.ui.xml:291
  1100 +#: ui/macos.ui.xml:800 ui/linux.ui.xml:291 ui/linux.ui.xml:800
  1101 +msgid "Unselect"
  1102 +msgstr ""
  1103 +
  1104 +#: src/objects/application/actions/about.c:98
  1105 +#, c-format
  1106 +msgid "Unstable version %s-%s"
  1107 +msgstr ""
  1108 +
  1109 +#: ui/windows.ui.xml:530 ui/windows.ui.xml:907 ui/macos.ui.xml:530
  1110 +#: ui/macos.ui.xml:907 ui/linux.ui.xml:530 ui/linux.ui.xml:907
  1111 +msgid "Use +/- for field navigation"
  1112 +msgstr ""
  1113 +
  1114 +#: src/objects/application/actions/about.c:100
  1115 +#, c-format
  1116 +msgid "Version %s-%s"
  1117 +msgstr ""
  1118 +
  1119 +#: src/objects/window/header.c:63 ui/windows.ui.xml:64 ui/windows.ui.xml:965
  1120 +#: ui/windows.ui.xml:1085 ui/macos.ui.xml:64 ui/macos.ui.xml:965
  1121 +#: ui/macos.ui.xml:1085 ui/linux.ui.xml:64 ui/linux.ui.xml:965
  1122 +#: ui/linux.ui.xml:1085
  1123 +msgid "View"
  1124 +msgstr ""
  1125 +
  1126 +#: src/objects/application/actions/about.c:191
  1127 +msgid "View this project on github"
  1128 +msgstr ""
  1129 +
  1130 +#: ui/windows.ui.xml:106 ui/windows.ui.xml:568 ui/macos.ui.xml:106
  1131 +#: ui/macos.ui.xml:568 ui/linux.ui.xml:106 ui/linux.ui.xml:568
  1132 +msgid "Window with default session"
  1133 +msgstr ""
  1134 +
  1135 +#: src/objects/os/windows/savedesktopicon.c:187
  1136 +msgid "Windows shortcuts"
  1137 +msgstr ""
  1138 +
  1139 +#: src/objects/settings/dialog.c:79
  1140 +msgid "_Apply"
  1141 +msgstr ""
  1142 +
  1143 +#: src/objects/actions/save.c:103 src/objects/settings/dialog.c:78
  1144 +#: src/objects/os/linux/savedesktopicon.c:140
  1145 +#: src/objects/os/windows/savedesktopicon.c:132
  1146 +msgid "_Cancel"
  1147 +msgstr ""
  1148 +
  1149 +#: src/objects/window/page.c:371
  1150 +msgid "_Close session"
  1151 +msgstr ""
  1152 +
  1153 +#: ui/windows.ui.xml:369 ui/windows.ui.xml:1107 ui/macos.ui.xml:369
  1154 +#: ui/macos.ui.xml:1107 ui/linux.ui.xml:369 ui/linux.ui.xml:1107
  1155 +msgid "_Connect"
  1156 +msgstr ""
  1157 +
  1158 +#: ui/windows.ui.xml:374 ui/macos.ui.xml:374 ui/linux.ui.xml:374
  1159 +msgid "_Disconnect"
  1160 +msgstr ""
  1161 +
  1162 +#: ui/windows.ui.xml:232 ui/windows.ui.xml:681 ui/windows.ui.xml:824
  1163 +#: ui/macos.ui.xml:232 ui/macos.ui.xml:681 ui/macos.ui.xml:824
  1164 +#: ui/linux.ui.xml:232 ui/linux.ui.xml:681 ui/linux.ui.xml:824
  1165 +msgid "_Edit"
  1166 +msgstr ""
  1167 +
  1168 +#: ui/windows.ui.xml:99 ui/macos.ui.xml:99 ui/linux.ui.xml:99
  1169 +msgid "_File"
  1170 +msgstr ""
  1171 +
  1172 +#: ui/windows.ui.xml:361 ui/macos.ui.xml:361 ui/linux.ui.xml:361
  1173 +msgid "_Network"
  1174 +msgstr ""
  1175 +
  1176 +#: ui/windows.ui.xml:103 ui/windows.ui.xml:565 ui/macos.ui.xml:103
  1177 +#: ui/macos.ui.xml:565 ui/linux.ui.xml:103 ui/linux.ui.xml:565
  1178 +msgid "_New"
  1179 +msgstr ""
  1180 +
  1181 +#: ui/windows.ui.xml:119 ui/windows.ui.xml:581 ui/macos.ui.xml:119
  1182 +#: ui/macos.ui.xml:581 ui/linux.ui.xml:119 ui/linux.ui.xml:581
  1183 +msgid "_Open"
  1184 +msgstr ""
  1185 +
  1186 +#: src/objects/toolbar/toolbar.c:235
  1187 +msgid "_Preferences"
  1188 +msgstr ""
  1189 +
  1190 +#: src/objects/window/page.c:365
  1191 +msgid "_Rename session"
  1192 +msgstr ""
  1193 +
  1194 +#: src/objects/actions/save.c:104 src/objects/os/linux/savedesktopicon.c:141
  1195 +#: src/objects/os/windows/savedesktopicon.c:133
  1196 +msgid "_Save"
  1197 +msgstr ""
  1198 +
  1199 +#: ui/windows.ui.xml:335 ui/macos.ui.xml:335 ui/linux.ui.xml:335
  1200 +msgid "_View"
  1201 +msgstr ""
  1202 +
  1203 +#: src/objects/application/actions/about.c:190
  1204 +msgid "https://github.com/PerryWerneck/pw3270"
  1205 +msgstr ""
  1206 +
  1207 +#: src/objects/application/actions/about.c:193
  1208 +msgid "translator-credits"
  1209 +msgstr ""
@@ -46,6 +46,7 @@ @@ -46,6 +46,7 @@
46 <Unit filename="schemas/linux/window.gschema.xml.in" /> 46 <Unit filename="schemas/linux/window.gschema.xml.in" />
47 <Unit filename="schemas/windows/application.gschema.xml.in" /> 47 <Unit filename="schemas/windows/application.gschema.xml.in" />
48 <Unit filename="schemas/windows/window.gschema.xml.in" /> 48 <Unit filename="schemas/windows/window.gschema.xml.in" />
  49 + <Unit filename="src/include/config.h" />
49 <Unit filename="src/include/pw3270.h" /> 50 <Unit filename="src/include/pw3270.h" />
50 <Unit filename="src/include/pw3270/actions.h" /> 51 <Unit filename="src/include/pw3270/actions.h" />
51 <Unit filename="src/include/pw3270/application.h" /> 52 <Unit filename="src/include/pw3270/application.h" />
@@ -67,6 +68,7 @@ @@ -67,6 +68,7 @@
67 <Unit filename="src/main/tools.c"> 68 <Unit filename="src/main/tools.c">
68 <Option compilerVar="CC" /> 69 <Option compilerVar="CC" />
69 </Unit> 70 </Unit>
  71 + <Unit filename="src/main/windows/resources.rc" />
70 <Unit filename="src/objects/actions/abstract.c"> 72 <Unit filename="src/objects/actions/abstract.c">
71 <Option compilerVar="CC" /> 73 <Option compilerVar="CC" />
72 </Unit> 74 </Unit>
@@ -89,6 +91,9 @@ @@ -89,6 +91,9 @@
89 <Unit filename="src/objects/actions/simple.c"> 91 <Unit filename="src/objects/actions/simple.c">
90 <Option compilerVar="CC" /> 92 <Option compilerVar="CC" />
91 </Unit> 93 </Unit>
  94 + <Unit filename="src/objects/actions/testprogram/testprogram.c">
  95 + <Option compilerVar="CC" />
  96 + </Unit>
92 <Unit filename="src/objects/actions/tools.c"> 97 <Unit filename="src/objects/actions/tools.c">
93 <Option compilerVar="CC" /> 98 <Option compilerVar="CC" />
94 </Unit> 99 </Unit>
@@ -116,6 +121,9 @@ @@ -116,6 +121,9 @@
116 <Unit filename="src/objects/application/open.c"> 121 <Unit filename="src/objects/application/open.c">
117 <Option compilerVar="CC" /> 122 <Option compilerVar="CC" />
118 </Unit> 123 </Unit>
  124 + <Unit filename="src/objects/application/plugins.c">
  125 + <Option compilerVar="CC" />
  126 + </Unit>
119 <Unit filename="src/objects/application/private.h" /> 127 <Unit filename="src/objects/application/private.h" />
120 <Unit filename="src/objects/keypad/attribute.c"> 128 <Unit filename="src/objects/keypad/attribute.c">
121 <Option compilerVar="CC" /> 129 <Option compilerVar="CC" />
@@ -130,6 +138,9 @@ @@ -130,6 +138,9 @@
130 <Option compilerVar="CC" /> 138 <Option compilerVar="CC" />
131 </Unit> 139 </Unit>
132 <Unit filename="src/objects/keypad/private.h" /> 140 <Unit filename="src/objects/keypad/private.h" />
  141 + <Unit filename="src/objects/keypad/testprogram/testprogram.c">
  142 + <Option compilerVar="CC" />
  143 + </Unit>
133 <Unit filename="src/objects/keypad/widget.c"> 144 <Unit filename="src/objects/keypad/widget.c">
134 <Option compilerVar="CC" /> 145 <Option compilerVar="CC" />
135 </Unit> 146 </Unit>
@@ -173,6 +184,9 @@ @@ -173,6 +184,9 @@
173 <Unit filename="src/objects/toolbar/settings.c"> 184 <Unit filename="src/objects/toolbar/settings.c">
174 <Option compilerVar="CC" /> 185 <Option compilerVar="CC" />
175 </Unit> 186 </Unit>
  187 + <Unit filename="src/objects/toolbar/testprogram/testprogram.c">
  188 + <Option compilerVar="CC" />
  189 + </Unit>
176 <Unit filename="src/objects/toolbar/toolbar.c"> 190 <Unit filename="src/objects/toolbar/toolbar.c">
177 <Option compilerVar="CC" /> 191 <Option compilerVar="CC" />
178 </Unit> 192 </Unit>
@@ -210,6 +224,9 @@ @@ -210,6 +224,9 @@
210 <Unit filename="src/objects/window/terminal.c"> 224 <Unit filename="src/objects/window/terminal.c">
211 <Option compilerVar="CC" /> 225 <Option compilerVar="CC" />
212 </Unit> 226 </Unit>
  227 + <Unit filename="src/objects/window/testprogram/testprogram.c">
  228 + <Option compilerVar="CC" />
  229 + </Unit>
213 <Unit filename="src/objects/window/tools.c"> 230 <Unit filename="src/objects/window/tools.c">
214 <Option compilerVar="CC" /> 231 <Option compilerVar="CC" />
215 </Unit> 232 </Unit>
src/include/config.h.in
1 -/*  
2 - * "Software G3270, desenvolvido com base nos códigos fontes do WC3270 e X3270  
3 - * (Paul Mattes Paul.Mattes@usa.net), de emulação de terminal 3270 para acesso a  
4 - * aplicativos mainframe. Registro no INPI sob o nome G3270.  
5 - *  
6 - * Copyright (C) <2008> <Banco do Brasil S.A.>  
7 - *  
8 - * Este programa é software livre. Você pode redistribuí-lo e/ou modificá-lo sob  
9 - * os termos da GPL v.2 - Licença Pública Geral GNU, conforme publicado pela  
10 - * Free Software Foundation.  
11 - *  
12 - * Este programa é distribuído na expectativa de ser útil, mas SEM QUALQUER  
13 - * GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou de ADEQUAÇÃO  
14 - * A QUALQUER PROPÓSITO EM PARTICULAR. Consulte a Licença Pública Geral GNU para  
15 - * obter mais detalhes.  
16 - *  
17 - * Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este  
18 - * programa; se não, escreva para a Free Software Foundation, Inc., 51 Franklin  
19 - * St, Fifth Floor, Boston, MA 02110-1301 USA  
20 - *  
21 - * Este programa está nomeado como config.h e possui - linhas de código.  
22 - *  
23 - * Contatos:  
24 - *  
25 - * perry.werneck@gmail.com (Alexandre Perry de Souza Werneck)  
26 - * erico.mendonca@gmail.com (Erico Mascarenhas de Mendonça)  
27 - *  
28 - */  
29 -  
30 -#ifndef PW3270_CONFIG_H_INCLUDED  
31 -  
32 - #define PW3270_CONFIG_H_INCLUDED 1  
33 -  
34 - #undef PACKAGE_NAME  
35 - #undef PACKAGE_VERSION  
36 - #undef PACKAGE_RELEASE  
37 - #undef PRODUCT_NAME  
38 - #undef APPLICATION_ID  
39 - #undef ENABLE_UNSTABLE_FEATURES  
40 -  
41 -#endif /* PW3270_CONFIG_H_INCLUDED */ 1 +/* src/include/config.h.in. Generated from configure.ac by autoheader. */
42 2
  3 +/* The application ID */
  4 +#undef APPLICATION_ID
  5 +
  6 +/* Are we using the unstable features? */
  7 +#undef ENABLE_UNSTABLE_FEATURES
  8 +
  9 +/* Define to 1 if you have the <dlfcn.h> header file. */
  10 +#undef HAVE_DLFCN_H
  11 +
  12 +/* Do we have gtk? */
  13 +#undef HAVE_GTK
  14 +
  15 +/* Define to 1 if you have the <inttypes.h> header file. */
  16 +#undef HAVE_INTTYPES_H
  17 +
  18 +/* Do we have libv3270? */
  19 +#undef HAVE_LIBV3270
  20 +
  21 +/* Do we have localtime_r? */
  22 +#undef HAVE_LOCALTIME_R
  23 +
  24 +/* do we have malloc.h? */
  25 +#undef HAVE_MALLOC_H
  26 +
  27 +/* Define to 1 if you have the <memory.h> header file. */
  28 +#undef HAVE_MEMORY_H
  29 +
  30 +/* Define to 1 if you have the <stdint.h> header file. */
  31 +#undef HAVE_STDINT_H
  32 +
  33 +/* Define to 1 if you have the <stdlib.h> header file. */
  34 +#undef HAVE_STDLIB_H
  35 +
  36 +/* Define to 1 if you have the <strings.h> header file. */
  37 +#undef HAVE_STRINGS_H
  38 +
  39 +/* Define to 1 if you have the <string.h> header file. */
  40 +#undef HAVE_STRING_H
  41 +
  42 +/* Do we have strtok_r? */
  43 +#undef HAVE_STRTOK_R
  44 +
  45 +/* Define to 1 if you have the <sys/stat.h> header file. */
  46 +#undef HAVE_SYS_STAT_H
  47 +
  48 +/* Define to 1 if you have the <sys/types.h> header file. */
  49 +#undef HAVE_SYS_TYPES_H
  50 +
  51 +/* Define to 1 if you have the <unistd.h> header file. */
  52 +#undef HAVE_UNISTD_H
  53 +
  54 +/* The tn3270 library name */
  55 +#undef LIBRARY_NAME
  56 +
  57 +/* Define to the sub-directory where libtool stores uninstalled libraries. */
  58 +#undef LT_OBJDIR
  59 +
  60 +/* Name of package */
  61 +#undef PACKAGE
  62 +
  63 +/* Define to the address where bug reports for this package should be sent. */
  64 +#undef PACKAGE_BUGREPORT
  65 +
  66 +/* The package major release */
  67 +#undef PACKAGE_MAJOR_RELEASE
  68 +
  69 +/* The package major version */
  70 +#undef PACKAGE_MAJOR_VERSION
  71 +
  72 +/* The package minor release */
  73 +#undef PACKAGE_MINOR_RELEASE
  74 +
  75 +/* The package minor version */
  76 +#undef PACKAGE_MINOR_VERSION
  77 +
  78 +/* Define to the full name of this package. */
  79 +#undef PACKAGE_NAME
  80 +
  81 +/* The package release */
  82 +#undef PACKAGE_RELEASE
  83 +
  84 +/* Define to the full name and version of this package. */
  85 +#undef PACKAGE_STRING
  86 +
  87 +/* Define to the one symbol short name of this package. */
  88 +#undef PACKAGE_TARNAME
  89 +
  90 +/* Define to the home page for this package. */
  91 +#undef PACKAGE_URL
  92 +
  93 +/* Define to the version of this package. */
  94 +#undef PACKAGE_VERSION
  95 +
  96 +/* The product name */
  97 +#undef PLUGIN_DIR
  98 +
  99 +/* The product name */
  100 +#undef PRODUCT_NAME
  101 +
  102 +/* Define to 1 if you have the ANSI C header files. */
  103 +#undef STDC_HEADERS
  104 +
  105 +/* Version number of package */
  106 +#undef VERSION
src/include/pw3270/toolbar.h
@@ -57,7 +57,6 @@ GType pw3270ToolBar_get_type(void) G_GNUC_CONST; @@ -57,7 +57,6 @@ GType pw3270ToolBar_get_type(void) G_GNUC_CONST;
57 GtkWidget * pw3270_toolbar_new(void); 57 GtkWidget * pw3270_toolbar_new(void);
58 GtkWidget * pw3270_toolbar_settings_new(void); 58 GtkWidget * pw3270_toolbar_settings_new(void);
59 59
60 -// GtkWidget * pw3270_toolbar_insert_lib3270_action(GtkWidget *toolbar, const LIB3270_ACTION *action, gint pos);  
61 GtkWidget * pw3270_toolbar_insert_action(GtkWidget *toolbar, const gchar *name, gint pos); 60 GtkWidget * pw3270_toolbar_insert_action(GtkWidget *toolbar, const gchar *name, gint pos);
62 61
63 void pw3270_toolbar_set_actions(GtkWidget *toolbar, const gchar *action_names); 62 void pw3270_toolbar_set_actions(GtkWidget *toolbar, const gchar *action_names);
src/main/builder.c
@@ -21,29 +21,6 @@ @@ -21,29 +21,6 @@
21 #include <pw3270/application.h> 21 #include <pw3270/application.h>
22 #include <pw3270/keypad.h> 22 #include <pw3270/keypad.h>
23 23
24 - /*  
25 - static GMenu * keypad_menu_new(GApplication *application) {  
26 -  
27 - GList * keypads = pw3270_application_get_keypad_models(application);  
28 -  
29 - if(!keypads)  
30 - return NULL;  
31 -  
32 - GMenu * menu = g_menu_new();  
33 -  
34 - // Create keypad items.  
35 - GList *item;  
36 - for(item = keypads; item; item = g_list_next(item)) {  
37 - GObject * model = G_OBJECT(item->data);  
38 - g_autofree gchar * action_name = g_strconcat("win.keypad.",pw3270_keypad_model_get_name(model),NULL);  
39 - g_menu_append(menu,pw3270_keypad_model_get_label(model),action_name);  
40 - }  
41 -  
42 - return menu;  
43 -  
44 - }  
45 - */  
46 -  
47 GtkBuilder * pw3270_application_builder_new(GApplication *application) { 24 GtkBuilder * pw3270_application_builder_new(GApplication *application) {
48 25
49 #if !defined(DEBUG) 26 #if !defined(DEBUG)
src/objects/actions/abstract.c
@@ -165,10 +165,7 @@ void PW3270Action_init(PW3270Action *action) { @@ -165,10 +165,7 @@ void PW3270Action_init(PW3270Action *action) {
165 } 165 }
166 166
167 void finalize(GObject *object) { 167 void finalize(GObject *object) {
168 -  
169 - // PW3270Action * action = PW3270_ACTION(object);  
170 G_OBJECT_CLASS(PW3270Action_parent_class)->finalize(object); 168 G_OBJECT_CLASS(PW3270Action_parent_class)->finalize(object);
171 -  
172 } 169 }
173 170
174 void get_property(GObject *object, guint prop_id, GValue *value, GParamSpec G_GNUC_UNUSED(*pspec)) { 171 void get_property(GObject *object, guint prop_id, GValue *value, GParamSpec G_GNUC_UNUSED(*pspec)) {
@@ -215,7 +212,6 @@ void get_property(GObject *object, guint prop_id, GValue *value, GParamSpec G_GN @@ -215,7 +212,6 @@ void get_property(GObject *object, guint prop_id, GValue *value, GParamSpec G_GN
215 } 212 }
216 213
217 void set_property(GObject G_GNUC_UNUSED(*object), guint G_GNUC_UNUSED(prop_id), const GValue G_GNUC_UNUSED(*value), GParamSpec G_GNUC_UNUSED(*pspec)) { 214 void set_property(GObject G_GNUC_UNUSED(*object), guint G_GNUC_UNUSED(prop_id), const GValue G_GNUC_UNUSED(*value), GParamSpec G_GNUC_UNUSED(*pspec)) {
218 -// g_message("Action %s property %s is read-only",g_action_get_name(G_ACTION(object)),pspec->name);  
219 } 215 }
220 216
221 static gboolean bg_notify_enabled(GObject *action) { 217 static gboolean bg_notify_enabled(GObject *action) {
src/objects/actions/simple.c
@@ -35,145 +35,3 @@ @@ -35,145 +35,3 @@
35 #include "private.h" 35 #include "private.h"
36 #include <v3270.h> 36 #include <v3270.h>
37 37
38 -/*  
39 -static void pw3270SimpleAction_class_init(pw3270SimpleActionClass *klass);  
40 -static void pw3270SimpleAction_init(pw3270SimpleAction *action);  
41 -static void change_widget(GAction *object, GtkWidget *from, GtkWidget *to);  
42 -  
43 -G_DEFINE_TYPE(pw3270SimpleAction, pw3270SimpleAction, PW3270_TYPE_ACTION);  
44 -  
45 -static void activate(GAction G_GNUC_UNUSED(*action), GVariant G_GNUC_UNUSED(*parameter), GtkWidget G_GNUC_UNUSED(*terminal)) {  
46 -debug("%s",__FUNCTION__);  
47 -}  
48 -  
49 -static gboolean get_enabled(GAction *action, GtkWidget *terminal) {  
50 -  
51 - if(terminal) {  
52 - return lib3270_action_group_get_activatable(v3270_get_session(terminal),PW3270_SIMPLE_ACTION(action)->group.id);  
53 - }  
54 -  
55 - return FALSE;  
56 -}  
57 -  
58 -static const gchar * get_icon_name(GAction *action) {  
59 -return PW3270_SIMPLE_ACTION(action)->icon_name;  
60 -}  
61 -  
62 -static const gchar * get_label(GAction *action) {  
63 -return PW3270_SIMPLE_ACTION(action)->label;  
64 -}  
65 -  
66 -static const gchar * get_tooltip(GAction *action) {  
67 -return PW3270_SIMPLE_ACTION(action)->tooltip;  
68 -}  
69 -  
70 -static void dispose(GObject *object) {  
71 -  
72 -pw3270SimpleAction *action = PW3270_SIMPLE_ACTION(object);  
73 -  
74 -if(action->group.listener) {  
75 - lib3270_unregister_action_group_listener(pw3270_action_get_session(G_ACTION(object)),action->group.id,action->group.listener);  
76 - action->group.listener = NULL;  
77 -}  
78 -  
79 -G_OBJECT_CLASS(pw3270SimpleAction_parent_class)->dispose(object);  
80 -}  
81 -  
82 -static void pw3270SimpleAction_class_init(pw3270SimpleActionClass *klass) {  
83 -  
84 - klass->parent_class.get_icon_name = get_icon_name;  
85 - klass->parent_class.get_label = get_label;  
86 - klass->parent_class.get_tooltip = get_tooltip;  
87 - klass->parent_class.get_enabled = get_enabled;  
88 -klass->parent_class.change_widget = change_widget;  
89 -  
90 -G_OBJECT_CLASS(klass)->dispose = dispose;  
91 -  
92 -}  
93 -  
94 -static void pw3270SimpleAction_init(pw3270SimpleAction *action) {  
95 -  
96 -action->icon_name = NULL;  
97 -action->label = N_( "No label" );  
98 -action->tooltip = NULL;  
99 -  
100 -action->group.id = LIB3270_ACTION_GROUP_NONE;  
101 -action->group.listener = NULL;  
102 -  
103 -}  
104 -  
105 -void pw3270_simple_action_set_lib3270_property(pw3270SimpleAction *action, const LIB3270_PROPERTY * property) {  
106 -  
107 -if(property) {  
108 - action->parent.name = property->name;  
109 - action->tooltip = property->summary ? property->summary : property->description;  
110 - action->group.id = property->group;  
111 -}  
112 -  
113 -}  
114 -  
115 -pw3270SimpleAction * pw3270_simple_action_new_from_lib3270(const LIB3270_ACTION * definition, const gchar *name) {  
116 -  
117 -if(!definition)  
118 - return NULL;  
119 -  
120 -debug("%s(%s,%s)",__FUNCTION__,definition->name,name);  
121 -  
122 - pw3270SimpleAction * action = (pw3270SimpleAction *) g_object_new(PW3270_TYPE_SIMPLE_ACTION, NULL);  
123 -  
124 - pw3270_simple_action_set_lib3270_property(action, (const LIB3270_PROPERTY *) definition);  
125 -  
126 - action->parent.name = name ? name : definition->name;  
127 -action->icon_name = definition->icon;  
128 -action->label = definition->label;  
129 -action->activate = activate;  
130 -  
131 -return action;  
132 -  
133 -}  
134 -  
135 -  
136 -pw3270SimpleAction * pw3270_simple_action_new_from_name(const gchar *source_name, const gchar *name) {  
137 -return pw3270_simple_action_new_from_lib3270(lib3270_action_get_by_name(source_name),name);  
138 -}  
139 -  
140 -pw3270SimpleAction * pw3270_simple_action_new() {  
141 - return (pw3270SimpleAction *) g_object_new(PW3270_TYPE_SIMPLE_ACTION, NULL);  
142 -}  
143 -  
144 -static gboolean bg_notify_enabled(GAction *action) {  
145 - pw3270_action_notify_enabled(action);  
146 -return FALSE;  
147 -}  
148 -  
149 -static void event_listener(H3270 G_GNUC_UNUSED(*hSession), void *object) {  
150 -g_idle_add((GSourceFunc) bg_notify_enabled, G_ACTION(object));  
151 -}  
152 -  
153 -void change_widget(GAction *object, GtkWidget *from, GtkWidget *to) {  
154 -  
155 -// Remove old listener  
156 -pw3270SimpleAction * action = PW3270_SIMPLE_ACTION(object);  
157 -  
158 -if(action->group.listener) {  
159 - lib3270_unregister_action_group_listener(pw3270_action_get_session(object),action->group.id,action->group.listener);  
160 - action->group.listener = NULL;  
161 -}  
162 -  
163 -// Get the current "enabled" state  
164 -gboolean enabled = g_action_get_enabled(object);  
165 -  
166 -// Change widget  
167 -PW3270_ACTION_CLASS(pw3270SimpleAction_parent_class)->change_widget(object,from,to);  
168 -  
169 -// Setup new listener  
170 -if(action->group.id != LIB3270_ACTION_GROUP_NONE && to) {  
171 - action->group.listener = lib3270_register_action_group_listener(pw3270_action_get_session(object),action->group.id,event_listener,object);  
172 -}  
173 -  
174 -// Does the "enabled" state has changed? If yes notify customers.  
175 -if(g_action_get_enabled(object) != enabled)  
176 - pw3270_action_notify_enabled(object);  
177 -  
178 -}  
179 -*/  
src/objects/actions/view.c
@@ -45,7 +45,6 @@ enum { @@ -45,7 +45,6 @@ enum {
45 }; 45 };
46 46
47 struct ListElement { 47 struct ListElement {
48 -// GAction * action;  
49 GdkPixbuf * pixbuf; 48 GdkPixbuf * pixbuf;
50 gchar * action_name; 49 gchar * action_name;
51 gchar * action_label; 50 gchar * action_label;
src/objects/application/actions/about.c
@@ -60,21 +60,6 @@ static GtkWidget * factory(PW3270Action G_GNUC_UNUSED(*action), GtkApplication * @@ -60,21 +60,6 @@ static GtkWidget * factory(PW3270Action G_GNUC_UNUSED(*action), GtkApplication *
60 G_STRINGIFY(PACKAGE_NAME) ".png", 60 G_STRINGIFY(PACKAGE_NAME) ".png",
61 }; 61 };
62 62
63 - /*  
64 -#ifdef DEBUG  
65 - static const char * logo = "./branding/" G_STRINGIFY(PRODUCT_NAME) "-logo.svg";  
66 - static const char * icon = "./branding/" G_STRINGIFY(PRODUCT_NAME) ".svg";  
67 -#else  
68 - lib3270_autoptr(char) logo = lib3270_build_data_filename(G_STRINGIFY(PRODUCT_NAME) "-logo.svg",NULL);  
69 - lib3270_autoptr(char) icon = lib3270_build_data_filename("icons", G_STRINGIFY(PRODUCT_NAME) ".svg",NULL);  
70 -#endif // DEBUG  
71 -  
72 - const char * imgs[] = {  
73 - logo,  
74 - icon  
75 - };  
76 - */  
77 -  
78 size_t ix; 63 size_t ix;
79 64
80 for(ix = 0; ix < G_N_ELEMENTS(names); ix++) { 65 for(ix = 0; ix < G_N_ELEMENTS(names); ix++) {
src/objects/application/application.c
@@ -23,6 +23,9 @@ @@ -23,6 +23,9 @@
23 #include <pw3270/actions.h> 23 #include <pw3270/actions.h>
24 #include <pw3270/keypad.h> 24 #include <pw3270/keypad.h>
25 #include <stdlib.h> 25 #include <stdlib.h>
  26 +#include <sys/types.h>
  27 +#include <sys/stat.h>
  28 +#include <fcntl.h>
26 29
27 enum { 30 enum {
28 PROP_ZERO, 31 PROP_ZERO,
@@ -299,7 +302,7 @@ static void pw3270Application_init(pw3270Application *app) { @@ -299,7 +302,7 @@ static void pw3270Application_init(pw3270Application *app) {
299 g_settings_bind(app->settings, "ui-style", app, "ui-style", G_SETTINGS_BIND_DEFAULT); 302 g_settings_bind(app->settings, "ui-style", app, "ui-style", G_SETTINGS_BIND_DEFAULT);
300 } 303 }
301 304
302 - pw3270_load_plugins_from_path(app, G_STRINGIFY(LIBDIR) G_DIR_SEPARATOR_S G_STRINGIFY(PRODUCT_NAME) "-plugins"); 305 + pw3270_load_plugins_from_path(app, PLUGIN_DIR);
303 306
304 #endif // _WIN32 307 #endif // _WIN32
305 308
@@ -611,7 +614,12 @@ static int loghandler(const H3270 G_GNUC_UNUSED(*hSession), pw3270Application *a @@ -611,7 +614,12 @@ static int loghandler(const H3270 G_GNUC_UNUSED(*hSession), pw3270Application *a
611 return -1; 614 return -1;
612 } 615 }
613 616
614 - FILE *f = fopen(app->logfile,"a"); 617 + int fd = open(app->logfile,O_WRONLY|O_APPEND|O_CREAT,S_IWUSR|S_IRUSR);
  618 + if(fd < 0) {
  619 + return -1;
  620 + }
  621 +
  622 + FILE *f = fdopen(fd,"a");
615 623
616 if(f) { 624 if(f) {
617 time_t ltime = time(0); 625 time_t ltime = time(0);
src/objects/toolbar/models.c
@@ -210,7 +210,6 @@ static void set_property(GObject *menuitem, GObject *widget) { @@ -210,7 +210,6 @@ static void set_property(GObject *menuitem, GObject *widget) {
210 const struct _contents *model = (const struct _contents *) g_object_get_data(menuitem, I_("pw3270_model_data")); 210 const struct _contents *model = (const struct _contents *) g_object_get_data(menuitem, I_("pw3270_model_data"));
211 const char *name = (const char *) g_object_get_data(menuitem, I_("pw3270_property_name")); 211 const char *name = (const char *) g_object_get_data(menuitem, I_("pw3270_property_name"));
212 212
213 -// debug("%s(%s,%d)",__FUNCTION__,name,model->value);  
214 g_object_set(widget,name,model->value,NULL); 213 g_object_set(widget,name,model->value,NULL);
215 214
216 } 215 }
src/objects/toolbar/settings.c
@@ -79,7 +79,6 @@ static const struct _comboboxes { @@ -79,7 +79,6 @@ static const struct _comboboxes {
79 79
80 struct _PW3270SettingsPage { 80 struct _PW3270SettingsPage {
81 GtkWidget * views[2]; 81 GtkWidget * views[2];
82 -// GtkTreeModel * models[G_N_ELEMENTS(comboboxes)];  
83 GtkWidget * combos[G_N_ELEMENTS(comboboxes)]; 82 GtkWidget * combos[G_N_ELEMENTS(comboboxes)];
84 }; 83 };
85 84
src/objects/window/actions/close.c
@@ -33,15 +33,6 @@ @@ -33,15 +33,6 @@
33 #include <lib3270.h> 33 #include <lib3270.h>
34 #include <lib3270/log.h> 34 #include <lib3270/log.h>
35 35
36 -/*  
37 -void pw3270_window_close_activated(GSimpleAction G_GNUC_UNUSED(* action), GVariant G_GNUC_UNUSED(*parameter), gpointer window) {  
38 -  
39 -debug("%s(%p)",__FUNCTION__,window);  
40 -gtk_window_close(GTK_WINDOW(window));  
41 -  
42 -}  
43 -*/  
44 -  
45 static void activate(GAction G_GNUC_UNUSED(*action), GVariant G_GNUC_UNUSED(*parameter), GtkWidget *terminal) { 36 static void activate(GAction G_GNUC_UNUSED(*action), GVariant G_GNUC_UNUSED(*parameter), GtkWidget *terminal) {
46 37
47 debug("%s","Window close action was activated"); 38 debug("%s","Window close action was activated");
src/objects/window/actions/hostproperties.c
@@ -1,73 +0,0 @@ @@ -1,73 +0,0 @@
1 -/*  
2 - * "Software pw3270, desenvolvido com base nos códigos fontes do WC3270 e X3270  
3 - * (Paul Mattes Paul.Mattes@usa.net), de emulação de terminal 3270 para acesso a  
4 - * aplicativos mainframe. Registro no INPI sob o nome G3270.  
5 - *  
6 - * Copyright (C) <2008> <Banco do Brasil S.A.>  
7 - *  
8 - * Este programa é software livre. Você pode redistribuí-lo e/ou modificá-lo sob  
9 - * os termos da GPL v.2 - Licença Pública Geral GNU, conforme publicado pela  
10 - * Free Software Foundation.  
11 - *  
12 - * Este programa é distribuído na expectativa de ser útil, mas SEM QUALQUER  
13 - * GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou de ADEQUAÇÃO  
14 - * A QUALQUER PROPÓSITO EM PARTICULAR. Consulte a Licença Pública Geral GNU para  
15 - * obter mais detalhes.  
16 - *  
17 - * Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este  
18 - * programa; se não, escreva para a Free Software Foundation, Inc., 51 Franklin  
19 - * St, Fifth Floor, Boston, MA 02110-1301 USA  
20 - *  
21 - * Este programa está nomeado como - e possui - linhas de código.  
22 - *  
23 - * Contatos:  
24 - *  
25 - * perry.werneck@gmail.com (Alexandre Perry de Souza Werneck)  
26 - * erico.mendonca@gmail.com (Erico Mascarenhas Mendonça)  
27 - *  
28 - */  
29 -  
30 -#include "../private.h"  
31 -#include <pw3270/window.h>  
32 -#include <pw3270/actions.h>  
33 -#include <v3270/settings.h>  
34 -#include <v3270/dialogs.h>  
35 -  
36 -/*  
37 -static GtkWidget * factory(V3270SimpleAction *action, GtkWidget *terminal);  
38 -  
39 -GAction * pw3270_action_host_properties_new(void) {  
40 -  
41 - V3270SimpleAction * action = v3270_dialog_action_new(factory);  
42 -  
43 - action->name = "host.properties";  
44 - action->group.id = LIB3270_ACTION_GROUP_OFFLINE;  
45 - action->icon_name = "network-server";  
46 - action->label = N_("Host properties");  
47 -  
48 - return G_ACTION(action);  
49 -}  
50 -  
51 -GtkWidget * factory(V3270SimpleAction G_GNUC_UNUSED(*action), GtkWidget *terminal) {  
52 -  
53 - GtkWidget * dialog = v3270_settings_dialog_new();  
54 - V3270Settings * settings = GTK_V3270_SETTINGS(v3270_host_settings_new());  
55 -  
56 - if(settings->title)  
57 - gtk_window_set_title(GTK_WINDOW(dialog), settings->title);  
58 -  
59 - gtk_container_add(GTK_CONTAINER(dialog), GTK_WIDGET(settings));  
60 -  
61 - gtk_window_set_transient_for(GTK_WINDOW(dialog),GTK_WINDOW(gtk_widget_get_toplevel(terminal)));  
62 - gtk_window_set_modal(GTK_WINDOW(dialog),TRUE);  
63 -  
64 - v3270_settings_dialog_set_terminal_widget(dialog, terminal);  
65 -  
66 - g_signal_connect(dialog,"response",G_CALLBACK(v3270_setttings_dialog_response),settings);  
67 -  
68 - gtk_widget_show_all(dialog);  
69 - return dialog;  
70 -  
71 -}  
72 -*/  
73 -  
src/objects/window/actions/sessionproperties.c
@@ -44,7 +44,6 @@ GtkWidget * factory(V3270SimpleAction *action, GtkWidget *terminal) { @@ -44,7 +44,6 @@ GtkWidget * factory(V3270SimpleAction *action, GtkWidget *terminal) {
44 size_t ix; 44 size_t ix;
45 45
46 GApplication *application = g_application_get_default(); 46 GApplication *application = g_application_get_default();
47 -// GSettings *settings = pw3270_application_get_settings(g_application_get_default());  
48 47
49 GtkWidget * dialog = v3270_settings_dialog_new(); 48 GtkWidget * dialog = v3270_settings_dialog_new();
50 gtk_window_set_title(GTK_WINDOW(dialog), action->label); 49 gtk_window_set_title(GTK_WINDOW(dialog), action->label);
src/objects/window/actions/setcolors.c
@@ -1,60 +0,0 @@ @@ -1,60 +0,0 @@
1 -/*  
2 - * "Software pw3270, desenvolvido com base nos códigos fontes do WC3270 e X3270  
3 - * (Paul Mattes Paul.Mattes@usa.net), de emulação de terminal 3270 para acesso a  
4 - * aplicativos mainframe. Registro no INPI sob o nome G3270.  
5 - *  
6 - * Copyright (C) <2008> <Banco do Brasil S.A.>  
7 - *  
8 - * Este programa é software livre. Você pode redistribuí-lo e/ou modificá-lo sob  
9 - * os termos da GPL v.2 - Licença Pública Geral GNU, conforme publicado pela  
10 - * Free Software Foundation.  
11 - *  
12 - * Este programa é distribuído na expectativa de ser útil, mas SEM QUALQUER  
13 - * GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou de ADEQUAÇÃO  
14 - * A QUALQUER PROPÓSITO EM PARTICULAR. Consulte a Licença Pública Geral GNU para  
15 - * obter mais detalhes.  
16 - *  
17 - * Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este  
18 - * programa; se não, escreva para a Free Software Foundation, Inc., 51 Franklin  
19 - * St, Fifth Floor, Boston, MA 02110-1301 USA  
20 - *  
21 - * Este programa está nomeado como - e possui - linhas de código.  
22 - *  
23 - * Contatos:  
24 - *  
25 - * perry.werneck@gmail.com (Alexandre Perry de Souza Werneck)  
26 - * erico.mendonca@gmail.com (Erico Mascarenhas Mendonça)  
27 - *  
28 - */  
29 -  
30 -/*  
31 -#include "../private.h"  
32 -#include <pw3270/window.h>  
33 -#include <pw3270/actions.h>  
34 -#include <v3270/settings.h>  
35 -#include <v3270/dialogs.h>  
36 -#include <v3270/colorscheme.h>  
37 -  
38 -static GtkWidget * factory(V3270SimpleAction *action, GtkWidget *terminal);  
39 -  
40 -GAction * pw3270_set_color_action_new(void) {  
41 -  
42 - V3270SimpleAction * action = v3270_dialog_action_new(factory);  
43 -  
44 - action->name = "set.colors";  
45 - action->icon_name = "gtk-select-color";  
46 - action->label = _("Colors");  
47 - action->tooltip = _("Change terminal colors");  
48 -  
49 - return G_ACTION(action);  
50 -  
51 -}  
52 -  
53 -GtkWidget * factory(V3270SimpleAction G_GNUC_UNUSED(*action), GtkWidget *terminal) {  
54 -  
55 - GtkWidget *dialog = v3270_settings_get_edit_dialog(v3270_color_settings_new(),terminal,FALSE);  
56 - gtk_widget_show_all(dialog);  
57 - return dialog;  
58 -}  
59 -*/  
60 -  
src/objects/window/header-settings.c
@@ -41,40 +41,8 @@ static void apply(GtkWidget *widget, GSettings *settings, PW3270SettingsPage *pa @@ -41,40 +41,8 @@ static void apply(GtkWidget *widget, GSettings *settings, PW3270SettingsPage *pa
41 41
42 struct _PW3270SettingsPage { 42 struct _PW3270SettingsPage {
43 GtkWidget * editor; 43 GtkWidget * editor;
44 - /*  
45 - GtkWidget * views[3];  
46 - GtkTreeModel * model;  
47 - */  
48 }; 44 };
49 45
50 -/*  
51 -static const struct _views {  
52 -const char * label;  
53 -gint left;  
54 -gint top;  
55 -gint height;  
56 -} views[] = {  
57 -{  
58 - .label = N_("Left"),  
59 - .left = 0,  
60 - .top = 0,  
61 - .height = 4  
62 -},  
63 -{  
64 - .label = N_("Right"),  
65 - .left = 0,  
66 - .top = 6,  
67 - .height = 4  
68 -},  
69 -{  
70 - .label = N_("Available"),  
71 - .left = 2,  
72 - .top = 0,  
73 - .height = 10  
74 -}  
75 -};  
76 -*/  
77 -  
78 /*--[ Implement ]------------------------------------------------------------------------------------*/ 46 /*--[ Implement ]------------------------------------------------------------------------------------*/
79 47
80 GtkWidget * pw3270_header_settings_new() { 48 GtkWidget * pw3270_header_settings_new() {
src/objects/window/header.c
@@ -82,7 +82,7 @@ void pw3270_window_set_header_action_names(GtkWidget *window, const gchar *actio @@ -82,7 +82,7 @@ void pw3270_window_set_header_action_names(GtkWidget *window, const gchar *actio
82 } 82 }
83 g_strfreev(elements); 83 g_strfreev(elements);
84 84
85 - // And then, the right side actions; 85 + // And then, the right side actions
86 elements = g_strsplit(header_blocks[1],",",-1); 86 elements = g_strsplit(header_blocks[1],",",-1);
87 for(ix=0; elements[ix]; ix++) { 87 for(ix=0; elements[ix]; ix++) {
88 button = pw3270_header_button_new_from_builder(GTK_WIDGET(window),builder,elements[ix]); 88 button = pw3270_header_button_new_from_builder(GTK_WIDGET(window),builder,elements[ix]);
src/objects/window/window.c
@@ -184,34 +184,6 @@ static void pw3270ApplicationWindow_class_init(pw3270ApplicationWindowClass *kla @@ -184,34 +184,6 @@ static void pw3270ApplicationWindow_class_init(pw3270ApplicationWindowClass *kla
184 } 184 }
185 #endif // DEBUG 185 #endif // DEBUG
186 186
187 - /*  
188 - {  
189 - gtk_icon_theme_append_search_path(  
190 - gtk_icon_theme_get_default(),  
191 - "./icons"  
192 - );  
193 -  
194 - gchar **paths = NULL;  
195 - gint n_paths = 0;  
196 -  
197 - gtk_icon_theme_get_search_path (  
198 - gtk_icon_theme_get_default(),  
199 - &paths,  
200 - &n_paths  
201 - );  
202 -  
203 - gint p;  
204 - for(p = 0; p < n_paths;p++) {  
205 - printf("**** [%s]\n",paths[p]);  
206 - }  
207 -  
208 - }  
209 -#else  
210 - {  
211 - }  
212 -#endif // DEBUG  
213 - */  
214 -  
215 { 187 {
216 GtkWidgetClass *widget = GTK_WIDGET_CLASS(klass); 188 GtkWidgetClass *widget = GTK_WIDGET_CLASS(klass);
217 widget->destroy = destroy; 189 widget->destroy = destroy;
@@ -749,8 +721,6 @@ GtkWidget * pw3270_application_window_new(GtkApplication * application, const gc @@ -749,8 +721,6 @@ GtkWidget * pw3270_application_window_new(GtkApplication * application, const gc
749 721
750 pw3270_application_window_set_active_terminal(GTK_WIDGET(window),terminal); 722 pw3270_application_window_set_active_terminal(GTK_WIDGET(window),terminal);
751 723
752 - // gtk_window_set_interactive_debugging(TRUE);  
753 -  
754 return GTK_WIDGET(window); 724 return GTK_WIDGET(window);
755 725
756 } 726 }