Commit 5dfa8824a16adfab5c748293cd99fd5321852bb6

Authored by Perry Werneck
Committed by GitHub
2 parents d310058a adf8e7f2
Exists in develop

Merge pull request #47 from PerryWerneck/develop

Removing fips, macos updates.
@@ -51,21 +51,24 @@ INSTALL_PACKAGES=@INSTALL_PACKAGES@ @@ -51,21 +51,24 @@ INSTALL_PACKAGES=@INSTALL_PACKAGES@
51 51
52 NETWORK_MODULES=default openssl 52 NETWORK_MODULES=default openssl
53 53
54 -SOURCES= \ 54 +COMMON_SOURCES= \
55 $(wildcard $(srcdir)/src/core/*.c) \ 55 $(wildcard $(srcdir)/src/core/*.c) \
56 $(wildcard $(srcdir)/src/core/keyboard/*.c) \ 56 $(wildcard $(srcdir)/src/core/keyboard/*.c) \
57 $(wildcard $(srcdir)/src/core/actions/*.c) \ 57 $(wildcard $(srcdir)/src/core/actions/*.c) \
58 $(wildcard $(srcdir)/src/core/toggles/*.c) \ 58 $(wildcard $(srcdir)/src/core/toggles/*.c) \
59 $(wildcard $(srcdir)/src/core/charset/*.c) \ 59 $(wildcard $(srcdir)/src/core/charset/*.c) \
60 $(wildcard $(srcdir)/src/core/ft/*.c) \ 60 $(wildcard $(srcdir)/src/core/ft/*.c) \
61 - $(wildcard $(srcdir)/src/core/@OSNAME@/*.rc) \  
62 - $(wildcard $(srcdir)/src/core/@OSNAME@/*.c) \  
63 $(wildcard $(srcdir)/src/core/properties/*.c) \ 61 $(wildcard $(srcdir)/src/core/properties/*.c) \
64 $(wildcard $(srcdir)/src/selection/*.c) \ 62 $(wildcard $(srcdir)/src/selection/*.c) \
65 $(wildcard $(srcdir)/src/network_modules/*.c) \ 63 $(wildcard $(srcdir)/src/network_modules/*.c) \
66 $(BUILDDIR)/.tmp/$(LIBNAME)/fallbacks.c \ 64 $(BUILDDIR)/.tmp/$(LIBNAME)/fallbacks.c \
67 $(foreach MODULE, $(NETWORK_MODULES), $(wildcard $(srcdir)/src/network_modules/$(MODULE)/*.c)) 65 $(foreach MODULE, $(NETWORK_MODULES), $(wildcard $(srcdir)/src/network_modules/$(MODULE)/*.c))
68 66
  67 +SOURCES= \
  68 + $(COMMON_SOURCES) \
  69 + $(wildcard $(srcdir)/src/core/@OSNAME@/*.rc) \
  70 + $(wildcard $(srcdir)/src/core/@OSNAME@/*.c)
  71 +
69 TEST_SOURCES= \ 72 TEST_SOURCES= \
70 $(wildcard $(srcdir)/src/testprogram/*.c) 73 $(wildcard $(srcdir)/src/testprogram/*.c)
71 74
@@ -311,10 +314,7 @@ install-macos-lib: \ @@ -311,10 +314,7 @@ install-macos-lib: \
311 314
312 @$(INSTALL_PROGRAM) \ 315 @$(INSTALL_PROGRAM) \
313 $(BINRLS)/$(SONAME) \ 316 $(BINRLS)/$(SONAME) \
314 - $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@  
315 -  
316 - # Install default configs  
317 - @mkdir -p $(DESTDIR)$(datarootdir)/pw3270 317 + $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@
318 318
319 install-windows-lib: \ 319 install-windows-lib: \
320 strip \ 320 strip \
@@ -399,12 +399,6 @@ install-linux-dev: @@ -399,12 +399,6 @@ install-linux-dev:
399 399
400 install-macos-dev: 400 install-macos-dev:
401 401
402 - @$(MKDIR) \  
403 - $(DESTDIR)$(libdir)  
404 -  
405 - @$(LN_S) \  
406 - $(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ \  
407 - $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@  
408 402
409 install-windows-dev: \ 403 install-windows-dev: \
410 $(BINRLS)/$(SONAME) \ 404 $(BINRLS)/$(SONAME) \
@@ -455,8 +449,11 @@ $(BUILDDIR)/.tmp/$(LIBNAME)/fallbacks.c: \ @@ -455,8 +449,11 @@ $(BUILDDIR)/.tmp/$(LIBNAME)/fallbacks.c: \
455 $@ 449 $@
456 450
457 locale/$(PACKAGE_NAME).pot: \ 451 locale/$(PACKAGE_NAME).pot: \
458 - $(foreach SRC, $(basename $(SOURCES)), $(POTDIR)/$(LIBNAME)/$(SRC).pot)  
459 - 452 + $(foreach SRC, $(basename $(COMMON_SOURCES)), $(POTDIR)/$(LIBNAME)/$(SRC).pot) \
  453 + $(foreach SRC, $(basename $(wildcard $(srcdir)/src/core/linux/*.c)), $(POTDIR)/$(LIBNAME)/$(SRC).pot) \
  454 + $(foreach SRC, $(basename $(wildcard $(srcdir)/src/core/windows/*.c)), $(POTDIR)/$(LIBNAME)/$(SRC).pot) \
  455 + $(foreach SRC, $(basename $(wildcard $(srcdir)/src/core/macos/*.c)), $(POTDIR)/$(LIBNAME)/$(SRC).pot)
  456 +
460 @rm -f $@ 457 @rm -f $@
461 @$(MKDIR) $(dir $@) 458 @$(MKDIR) $(dir $@)
462 @$(MSGCAT) --sort-output $^ > $@ 459 @$(MSGCAT) --sort-output $^ > $@
PKGBUILD.mingw
@@ -30,7 +30,7 @@ url="https://github.com/PerryWerneck/${_realname}" @@ -30,7 +30,7 @@ url="https://github.com/PerryWerneck/${_realname}"
30 arch=(i686 x86_64) 30 arch=(i686 x86_64)
31 license=(LGPL-3.0-or-later) 31 license=(LGPL-3.0-or-later)
32 depends=(${MINGW_PACKAGE_PREFIX}-openssl) 32 depends=(${MINGW_PACKAGE_PREFIX}-openssl)
33 -makedepends=(autoconf automake make libtool gzip dos2unix ${MINGW_PACKAGE_PREFIX}-openssl) 33 +makedepends=(autoconf automake make libtool pkgconf gzip dos2unix ${MINGW_PACKAGE_PREFIX}-gcc ${MINGW_PACKAGE_PREFIX}-gettext ${MINGW_PACKAGE_PREFIX}-openssl)
34 checkdepends=() 34 checkdepends=()
35 35
36 provides=($pkgname) 36 provides=($pkgname)
@@ -5,6 +5,7 @@ Created originally as part of PW3270 application. @@ -5,6 +5,7 @@ Created originally as part of PW3270 application.
5 [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) 5 [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
6 ![CodeQL](https://github.com/PerryWerneck/lib3270/workflows/CodeQL/badge.svg) 6 ![CodeQL](https://github.com/PerryWerneck/lib3270/workflows/CodeQL/badge.svg)
7 [![build result](https://build.opensuse.org/projects/home:PerryWerneck:pw3270/packages/lib3270/badge.svg?type=percent)](https://build.opensuse.org/package/show/home:PerryWerneck:pw3270/lib3270) 7 [![build result](https://build.opensuse.org/projects/home:PerryWerneck:pw3270/packages/lib3270/badge.svg?type=percent)](https://build.opensuse.org/package/show/home:PerryWerneck:pw3270/lib3270)
  8 +[![Publish](https://github.com/PerryWerneck/lib3270/actions/workflows/publish.yml/badge.svg)](https://github.com/PerryWerneck/lib3270/actions/workflows/publish.yml)
8 ![Downloads](https://img.shields.io/github/downloads/PerryWerneck/lib3270/total.svg) 9 ![Downloads](https://img.shields.io/github/downloads/PerryWerneck/lib3270/total.svg)
9 10
10 ## Installation 11 ## Installation
@@ -37,7 +38,7 @@ You can download installation package for supported distributions in Open Build @@ -37,7 +38,7 @@ You can download installation package for supported distributions in Open Build
37 * dbus-1-devel 38 * dbus-1-devel
38 * xz 39 * xz
39 40
40 -(This command can make it easy on SuSE: grep -i buildrequires rpm/lib3270.spec | cut -d: -f2 | sudo xargs zypper in ) 41 + (This command can make it easy on SuSE: grep -i buildrequires rpm/lib3270.spec | cut -d: -f2 | sudo xargs zypper in )
41 42
42 3. Configure and build 43 3. Configure and build
43 44
@@ -104,8 +105,9 @@ You can download installation package for supported distributions in Open Build @@ -104,8 +105,9 @@ You can download installation package for supported distributions in Open Build
104 3. Install devel packages using pacman on mingw shell 105 3. Install devel packages using pacman on mingw shell
105 106
106 ```shell 107 ```shell
107 - pacman -S --needed mingw-w64-x86_64-gcc automake autoconf make git pkgconf mingw-w64-x86_64-gettext mingw-w64-x86_64-openssl libtool 108 + pacman -S --needed zip dos2unix mingw-w64-x86_64-gcc automake autoconf make git pkgconf mingw-w64-x86_64-gettext gettext-devel mingw-w64-x86_64-openssl libtool
108 ``` 109 ```
  110 +
109 Afther this close and reopen mingw shell. 111 Afther this close and reopen mingw shell.
110 112
111 4. Get lib3270 sources from git using the mingw shell 113 4. Get lib3270 sources from git using the mingw shell
@@ -139,18 +141,15 @@ Install @@ -139,18 +141,15 @@ Install
139 2. Install dependencies 141 2. Install dependencies
140 142
141 ```shell 143 ```shell
142 - brew install automake binutils coreutils curl gettext libtool openssl pkgconfig  
143 - ```  
144 -  
145 -3. Use [open-keg](https://gist.github.com/andrebreves/5f36e78575e20162ed0a62bd27c4bcea) to make keg-only dependencies available during build process  
146 -  
147 - ```shell  
148 - open-keg curl openldap openssl 144 + brew update
  145 + brew install xz automake binutils coreutils curl gettext libtool openssl pkgconfig
  146 + brew upgrade
149 ``` 147 ```
150 148
151 -4. Configure, build and install (inside the [open-keg](https://gist.github.com/andrebreves/5f36e78575e20162ed0a62bd27c4bcea) shell opened above) 149 +4. Configure, build and install
152 150
153 ```shell 151 ```shell
  152 + export PKG_CONFIG_PATH="$(brew --prefix curl)/lib/pkgconfig:$(brew --prefix openssl)/lib/pkgconfig"
154 ./autogen.sh --prefix="$(brew --cellar)/lib3270/5.4" 153 ./autogen.sh --prefix="$(brew --cellar)/lib3270/5.4"
155 make all && make install 154 make all && make install
156 brew link lib3270 155 brew link lib3270
@@ -394,19 +394,6 @@ dnl --------------------------------------------------------------------------- @@ -394,19 +394,6 @@ dnl ---------------------------------------------------------------------------
394 dnl SSL Security options 394 dnl SSL Security options
395 dnl --------------------------------------------------------------------------- 395 dnl ---------------------------------------------------------------------------
396 396
397 -AC_ARG_ENABLE([fips],  
398 - [AS_HELP_STRING([--disable-fips], [Disable OpenSSL FIPS])],  
399 -[  
400 - app_cv_fips="$enableval"  
401 -],[  
402 - AC_CHECK_HEADER(openssl/fips.h, app_cv_fips="yes", AC_MSG_NOTICE(fips.h is not available))  
403 -  
404 -])  
405 -  
406 -if test "$app_cv_fips" == "yes"; then  
407 - AC_DEFINE(HAVE_FIPS_H, 1, [FIPS Header is available])  
408 -fi  
409 -  
410 AC_ARG_ENABLE([self-signed-cert-check], 397 AC_ARG_ENABLE([self-signed-cert-check],
411 [AS_HELP_STRING([--enable-self-signed-cert-check], [Emit Warning when host presents a self signed certificate])], 398 [AS_HELP_STRING([--enable-self-signed-cert-check], [Emit Warning when host presents a self signed certificate])],
412 [ 399 [
locale/lib3270.pot 0 → 100644
@@ -0,0 +1,2137 @@ @@ -0,0 +1,2137 @@
  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-04-21 08:38-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=CHARSET\n"
  18 +"Content-Transfer-Encoding: 8bit\n"
  19 +
  20 +#: src/core/ctlr.c:178
  21 +#, c-format
  22 +msgid "%dx%d is negative or zero"
  23 +msgstr ""
  24 +
  25 +#: src/core/ctlr.c:190
  26 +#, c-format
  27 +msgid "%dx%d screen size is bigger than the maximum size"
  28 +msgstr ""
  29 +
  30 +#: src/network_modules/tools.c:175 src/network_modules/tools.c:191
  31 +#, c-format
  32 +msgid "%s"
  33 +msgstr ""
  34 +
  35 +#: src/core/keyboard/kybd.c:1763
  36 +#, c-format
  37 +msgid "%s: Bell not supported"
  38 +msgstr ""
  39 +
  40 +#: src/core/keyboard/kybd.c:1908
  41 +#, c-format
  42 +msgid "%s: Missing hex digits after \\x"
  43 +msgstr ""
  44 +
  45 +#: src/core/keyboard/kybd.c:1861
  46 +#, c-format
  47 +msgid "%s: Unknown character after \\p"
  48 +msgstr ""
  49 +
  50 +#: src/core/keyboard/kybd.c:1889
  51 +#, c-format
  52 +msgid "%s: Unknown character after \\pa"
  53 +msgstr ""
  54 +
  55 +#: src/core/keyboard/kybd.c:1872
  56 +#, c-format
  57 +msgid "%s: Unknown character after \\pf"
  58 +msgstr ""
  59 +
  60 +#: src/core/keyboard/kybd.c:1814
  61 +#, c-format
  62 +msgid "%s: Vertical tab not supported"
  63 +msgstr ""
  64 +
  65 +#: src/core/telnet.c:1785
  66 +msgid "3270 Mode"
  67 +msgstr ""
  68 +
  69 +#: src/core/actions/table.c:678
  70 +msgid "3270-style backspace"
  71 +msgstr ""
  72 +
  73 +#: src/network_modules/openssl/messages.c:314
  74 +msgid ""
  75 +"A CA certificate is invalid. Either it is not a CA or its extensions are not "
  76 +"consistent with the supplied purpose."
  77 +msgstr ""
  78 +
  79 +#: src/core/actions/table.c:692
  80 +msgid "ATTN key, per RFC 2355. Sends IP, regardless"
  81 +msgstr ""
  82 +
  83 +#: src/core/ft/ft.c:100
  84 +msgid "Abort sent; awaiting response"
  85 +msgstr ""
  86 +
  87 +#: src/core/ft/ft.c:612
  88 +msgid "Aborting..."
  89 +msgstr ""
  90 +
  91 +#: src/core/ft/ft.c:98
  92 +msgid "Ack received, data flowing"
  93 +msgstr ""
  94 +
  95 +#: src/core/paste.c:373
  96 +msgid "Action failed"
  97 +msgstr ""
  98 +
  99 +#: src/core/toggles/table.c:256
  100 +msgid "Alert sound"
  101 +msgstr ""
  102 +
  103 +#: src/network_modules/openssl/start.c:264
  104 +msgid "An EOF was observed that violates the protocol"
  105 +msgstr ""
  106 +
  107 +#: src/core/ft/ftmessages.c:67
  108 +msgid "An error exists in the PC's file name."
  109 +msgstr ""
  110 +
  111 +#: src/core/ft/ftmessages.c:46
  112 +msgid ""
  113 +"An error occurred in the file transfer, which may be an error in the data "
  114 +"being transferred, or an unidentified system error."
  115 +msgstr ""
  116 +
  117 +#: src/network_modules/openssl/messages.c:238
  118 +msgid "An error occurred trying to allocate memory. This should never happen."
  119 +msgstr ""
  120 +
  121 +#: src/core/ft/ftmessages.c:102
  122 +msgid "An invalid SEND or RECEIVE parameter was sent to the host."
  123 +msgstr ""
  124 +
  125 +#: src/core/actions/table.c:691
  126 +msgid "Attn"
  127 +msgstr ""
  128 +
  129 +#: src/network_modules/openssl/messages.c:390
  130 +msgid "Authority and issuer serial number mismatch"
  131 +msgstr ""
  132 +
  133 +#: src/network_modules/openssl/messages.c:379
  134 +msgid "Authority and subject key identifier mismatch"
  135 +msgstr ""
  136 +
  137 +#: src/core/toggles/table.c:275
  138 +msgid "Auto Resize"
  139 +msgstr ""
  140 +
  141 +#: src/core/toggles/table.c:318 src/core/toggles/table.c:319
  142 +msgid "Auto-Reconnect"
  143 +msgstr ""
  144 +
  145 +#: src/core/toggles/table.c:236
  146 +msgid "Automatically connect to host on startup"
  147 +msgstr ""
  148 +
  149 +#: src/core/toggles/table.c:115
  150 +msgid ""
  151 +"Automatically convert trailing blanks in a field to NULLs in order to insert "
  152 +"a character, and will automatically convert leading NULLs to blanks so that "
  153 +"input data is not squeezed to the left"
  154 +msgstr ""
  155 +
  156 +#: src/core/toggles/table.c:320
  157 +msgid "Automatically reconnect to the host if it ever disconnects"
  158 +msgstr ""
  159 +
  160 +#: src/core/ft/ft.c:99
  161 +msgid "Awaiting chance to send an abort"
  162 +msgstr ""
  163 +
  164 +#: src/core/actions/table.c:677
  165 +msgid "Back space"
  166 +msgstr ""
  167 +
  168 +#: src/core/actions/table.c:504
  169 +msgid "Backspaces the cursor until it hits the front of a word"
  170 +msgstr ""
  171 +
  172 +#: src/core/windows/connect.c:123
  173 +msgid "Bad winsock version"
  174 +msgstr ""
  175 +
  176 +#: src/core/toggles/table.c:257
  177 +msgid "Beep on errors"
  178 +msgstr ""
  179 +
  180 +#: src/core/toggles/table.c:113 src/core/toggles/table.c:114
  181 +msgid "Blank Fill"
  182 +msgstr ""
  183 +
  184 +#: src/core/toggles/table.c:62 src/core/toggles/table.c:63
  185 +msgid "Blinking Cursor"
  186 +msgstr ""
  187 +
  188 +#: src/core/toggles/table.c:205 src/core/toggles/table.c:206
  189 +msgid "Bold"
  190 +msgstr ""
  191 +
  192 +#: src/core/actions/table.c:705 src/core/actions/table.c:706
  193 +msgid "Break"
  194 +msgstr ""
  195 +
  196 +#: src/network_modules/tools.c:113
  197 +msgid "Broken pipe"
  198 +msgstr ""
  199 +
  200 +#: src/core/ft/ftmessages.c:215
  201 +msgid "CMS disk is full: file transfer canceled"
  202 +msgstr ""
  203 +
  204 +#: src/core/ft/ftmessages.c:208
  205 +msgid "CMS disk is not accessed: file transfer canceled"
  206 +msgstr ""
  207 +
  208 +#: src/core/ft/ftmessages.c:201
  209 +msgid "CMS disk is read-only: file transfer canceled"
  210 +msgstr ""
  211 +
  212 +#: src/core/ft/ftmessages.c:194
  213 +msgid "CMS file not found: file transfer canceled"
  214 +msgstr ""
  215 +
  216 +#: src/network_modules/openssl/messages.c:134
  217 +msgid "CRL signature failure"
  218 +msgstr ""
  219 +
  220 +#: src/core/toggles/init.c:83 src/core/linux/connect.c:334
  221 +#: src/core/windows/connect.c:372 src/core/macos/connect.c:334
  222 +#, c-format
  223 +msgid "Can't %s network keep-alive"
  224 +msgstr ""
  225 +
  226 +#: src/core/windows/ldap.c:149
  227 +msgid "Can't bind to LDAP server"
  228 +msgstr ""
  229 +
  230 +#: src/core/linux/connect.c:215 src/core/linux/connect.c:269
  231 +#: src/core/windows/connect.c:232 src/core/windows/connect.c:276
  232 +#: src/core/macos/connect.c:215 src/core/macos/connect.c:269
  233 +#, c-format
  234 +msgid "Can't connect to %s:%s"
  235 +msgstr ""
  236 +
  237 +#: src/core/windows/http.c:110
  238 +msgid "Can't connect to HTTP server."
  239 +msgstr ""
  240 +
  241 +#: src/core/linux/connect.c:165 src/core/windows/connect.c:197
  242 +#: src/core/macos/connect.c:165
  243 +msgid "Can't connect to host"
  244 +msgstr ""
  245 +
  246 +#: src/core/windows/http.c:121
  247 +msgid "Can't create HTTP request."
  248 +msgstr ""
  249 +
  250 +#: src/network_modules/openssl/start.c:71
  251 +msgid "Can't decode CRL data"
  252 +msgstr ""
  253 +
  254 +#: src/core/linux/ldap.c:167 src/core/windows/ldap.c:204
  255 +#: src/core/macos/ldap.c:167
  256 +msgid "Can't decode certificate revocation list"
  257 +msgstr ""
  258 +
  259 +#: src/core/connect.c:169
  260 +msgid "Can't determine the TLS/SSL state"
  261 +msgstr ""
  262 +
  263 +#: src/core/ft/ft.c:391
  264 +msgid "Can't get file size"
  265 +msgstr ""
  266 +
  267 +#: src/core/windows/ldap.c:133
  268 +msgid "Can't initialize LDAP"
  269 +msgstr ""
  270 +
  271 +#: src/core/linux/curl.c:171 src/core/macos/curl.c:171
  272 +msgid "Can't initialize curl operation"
  273 +msgstr ""
  274 +
  275 +#: src/network_modules/openssl/context.c:236
  276 +msgid "Can't initialize the TLS/SSL context."
  277 +msgstr ""
  278 +
  279 +#: src/core/session.c:176
  280 +msgid "Can't load"
  281 +msgstr ""
  282 +
  283 +#: src/network_modules/openssl/context.c:338
  284 +#, c-format
  285 +msgid "Can't load \"%s\": %s"
  286 +msgstr ""
  287 +
  288 +#: src/network_modules/openssl/context.c:291
  289 +#, c-format
  290 +msgid "Can't open \"%s\" (The Windows error code was %ld)"
  291 +msgstr ""
  292 +
  293 +#: src/network_modules/openssl/context.c:304
  294 +#, c-format
  295 +msgid "Can't open \"%s\": %s"
  296 +msgstr ""
  297 +
  298 +#: src/core/windows/http.c:99
  299 +msgid "Can't open HTTP session"
  300 +msgstr ""
  301 +
  302 +#: src/core/session.c:164
  303 +msgid "Can't print"
  304 +msgstr ""
  305 +
  306 +#: src/network_modules/openssl/context.c:322
  307 +#, c-format
  308 +msgid "Can't read \"%s\": %s"
  309 +msgstr ""
  310 +
  311 +#: src/core/windows/http.c:173
  312 +msgid "Can't read HTTP response size."
  313 +msgstr ""
  314 +
  315 +#: src/core/session.c:170
  316 +msgid "Can't save"
  317 +msgstr ""
  318 +
  319 +#: src/core/windows/http.c:134
  320 +msgid "Can't send HTTP request."
  321 +msgstr ""
  322 +
  323 +#: src/core/windows/ldap.c:141
  324 +msgid "Can't set LDAP protocol version"
  325 +msgstr ""
  326 +
  327 +#: src/network_modules/tools.c:190
  328 +msgid "Can't set socket to blocking mode."
  329 +msgstr ""
  330 +
  331 +#: src/network_modules/tools.c:190
  332 +msgid "Can't set socket to non blocking mode"
  333 +msgstr ""
  334 +
  335 +#: src/core/ft/ft.c:192
  336 +msgid "Can't start file transfer."
  337 +msgstr ""
  338 +
  339 +#: src/core/windows/connect.c:124
  340 +msgid "Can't use this system winsock"
  341 +msgstr ""
  342 +
  343 +#: src/core/ft/ft.c:151
  344 +msgid "Cancelled by user"
  345 +msgstr ""
  346 +
  347 +#: src/core/telnet.c:928
  348 +msgid "Cannot connect to specified LU"
  349 +msgstr ""
  350 +
  351 +#: src/network_modules/openssl/start.c:213
  352 +msgid "Cant create a new SSL structure for current connection."
  353 +msgstr ""
  354 +
  355 +#: src/network_modules/openssl/context.c:332
  356 +msgid "Cant load custom certificate file."
  357 +msgstr ""
  358 +
  359 +#: src/network_modules/openssl/context.c:286
  360 +msgid "Cant open custom certificate directory."
  361 +msgstr ""
  362 +
  363 +#: src/network_modules/openssl/context.c:316
  364 +msgid "Cant read custom certificate file."
  365 +msgstr ""
  366 +
  367 +#: src/network_modules/openssl/start.c:230
  368 +msgid ""
  369 +"Cant set the file descriptor for the input/output facility for the TLS/SSL "
  370 +"(encrypted) side of ssl."
  371 +msgstr ""
  372 +
  373 +#: src/network_modules/openssl/messages.c:156
  374 +msgid "Certificate has expired"
  375 +msgstr ""
  376 +
  377 +#: src/network_modules/openssl/messages.c:145
  378 +msgid "Certificate is not yet valid"
  379 +msgstr ""
  380 +
  381 +#: src/network_modules/openssl/messages.c:346
  382 +msgid "Certificate not trusted"
  383 +msgstr ""
  384 +
  385 +#: src/network_modules/openssl/messages.c:357
  386 +msgid "Certificate rejected"
  387 +msgstr ""
  388 +
  389 +#: src/network_modules/openssl/messages.c:302
  390 +msgid "Certificate revoked"
  391 +msgstr ""
  392 +
  393 +#: src/network_modules/openssl/messages.c:123
  394 +msgid "Certificate signature failure"
  395 +msgstr ""
  396 +
  397 +#: src/core/toggles/table.c:277
  398 +msgid "Change screen size on alternative screen"
  399 +msgstr ""
  400 +
  401 +#: src/core/telnet.c:1790
  402 +msgid "Charset"
  403 +msgstr ""
  404 +
  405 +#: src/core/actions/table.c:765
  406 +msgid "Charset table"
  407 +msgstr ""
  408 +
  409 +#: src/core/actions/table.c:588
  410 +msgid "Clear"
  411 +msgstr ""
  412 +
  413 +#: src/core/actions/table.c:589
  414 +msgid "Clear AID key"
  415 +msgstr ""
  416 +
  417 +#: src/core/ft/ftmessages.c:73
  418 +msgid "Command incomplete: file transfer canceled"
  419 +msgstr ""
  420 +
  421 +#: src/core/telnet.c:1784
  422 +msgid "Connect"
  423 +msgstr ""
  424 +
  425 +#: src/core/toggles/table.c:235
  426 +msgid "Connect on startup"
  427 +msgstr ""
  428 +
  429 +#: src/core/telnet.c:1764
  430 +msgid "Connected initial"
  431 +msgstr ""
  432 +
  433 +#: src/core/telnet.c:1782
  434 +msgid "Connecting"
  435 +msgstr ""
  436 +
  437 +#: src/network_modules/tools.c:160 src/core/linux/connect.c:230
  438 +#: src/core/linux/connect.c:321 src/core/linux/connect.c:338
  439 +#: src/core/windows/connect.c:358 src/core/windows/connect.c:376
  440 +#: src/core/macos/connect.c:230 src/core/macos/connect.c:321
  441 +#: src/core/macos/connect.c:338
  442 +msgid "Connection error"
  443 +msgstr ""
  444 +
  445 +#: src/network_modules/openssl/start.c:246
  446 +msgid "Connection failed"
  447 +msgstr ""
  448 +
  449 +#: src/network_modules/tools.c:122
  450 +msgid "Connection reset by peer"
  451 +msgstr ""
  452 +
  453 +#: src/core/properties/signed.c:55
  454 +msgid "Connection state"
  455 +msgstr ""
  456 +
  457 +#: src/network_modules/openssl/messages.c:80
  458 +#: src/network_modules/openssl/messages.c:253
  459 +#: src/network_modules/openssl/messages.c:268
  460 +msgid "Continue"
  461 +msgstr ""
  462 +
  463 +#: src/core/toggles/table.c:165 src/core/toggles/table.c:166
  464 +msgid "Cross hair cursor"
  465 +msgstr ""
  466 +
  467 +#: src/core/properties/unsigned.c:117
  468 +msgid "Current screen height in rows"
  469 +msgstr ""
  470 +
  471 +#: src/core/properties/unsigned.c:110
  472 +msgid "Current screen width in columns"
  473 +msgstr ""
  474 +
  475 +#: src/core/properties/signed.c:63
  476 +msgid "Cursor address"
  477 +msgstr ""
  478 +
  479 +#: src/core/actions/table.c:158
  480 +msgid "Cursor down 1 position"
  481 +msgstr ""
  482 +
  483 +#: src/core/actions/table.c:172
  484 +msgid "Cursor left 1 position"
  485 +msgstr ""
  486 +
  487 +#: src/core/actions/table.c:186
  488 +msgid "Cursor right 1 position"
  489 +msgstr ""
  490 +
  491 +#: src/core/actions/table.c:200
  492 +msgid "Cursor to first field on next line or any lines after that"
  493 +msgstr ""
  494 +
  495 +#: src/core/actions/table.c:228
  496 +msgid "Cursor to next unprotected word"
  497 +msgstr ""
  498 +
  499 +#: src/core/actions/table.c:214
  500 +msgid "Cursor to previous word"
  501 +msgstr ""
  502 +
  503 +#: src/core/actions/table.c:144
  504 +msgid "Cursor up 1 position"
  505 +msgstr ""
  506 +
  507 +#: src/core/actions/table.c:650
  508 +msgid "DUP key"
  509 +msgstr ""
  510 +
  511 +#: src/core/ft/ft_cut.c:163 src/core/ft/ft_cut.c:171
  512 +msgid "Data conversion error"
  513 +msgstr ""
  514 +
  515 +#: src/core/properties/string.c:159
  516 +msgid "Default host URL"
  517 +msgstr ""
  518 +
  519 +#: src/core/actions/table.c:635 src/core/actions/table.c:636
  520 +msgid "Delete"
  521 +msgstr ""
  522 +
  523 +#: src/core/actions/table.c:517 src/core/actions/table.c:518
  524 +msgid "Delete field"
  525 +msgstr ""
  526 +
  527 +#: src/core/actions/table.c:503
  528 +msgid "Delete word"
  529 +msgstr ""
  530 +
  531 +#: src/core/properties/string.c:173
  532 +msgid "Description of the current security state"
  533 +msgstr ""
  534 +
  535 +#: src/core/telnet.c:1175
  536 +msgid "Device type rejected"
  537 +msgstr ""
  538 +
  539 +#: src/core/actions/table.c:127
  540 +msgid "Disconnect from host"
  541 +msgstr ""
  542 +
  543 +#: src/core/ft/ft.c:244 src/network_modules/openssl/main.c:100
  544 +#: src/network_modules/openssl/main.c:148
  545 +msgid "Disconnected from host."
  546 +msgstr ""
  547 +
  548 +#: src/core/properties/string.c:120
  549 +msgid "Display charset"
  550 +msgstr ""
  551 +
  552 +#: src/core/toggles/table.c:84
  553 +msgid "Display the cursor location in the OIA (the status line)"
  554 +msgstr ""
  555 +
  556 +#: src/core/actions/table.c:157
  557 +msgid "Down"
  558 +msgstr ""
  559 +
  560 +#: src/core/actions/table.c:649
  561 +msgid "Dup"
  562 +msgstr ""
  563 +
  564 +#: src/core/telnet.c:728
  565 +msgid "EOR received when not in 3270 mode, ignored."
  566 +msgstr ""
  567 +
  568 +#: src/core/windows/http.c:157
  569 +msgid "Empty response from HTTP server."
  570 +msgstr ""
  571 +
  572 +#: src/core/toggles/table.c:298
  573 +msgid "Enable network in/out trace"
  574 +msgstr ""
  575 +
  576 +#: src/core/toggles/table.c:287
  577 +msgid "Enable network keep-alive with SO_KEEPALIVE"
  578 +msgstr ""
  579 +
  580 +#: src/core/toggles/table.c:309
  581 +msgid "Enable security negotiation trace"
  582 +msgstr ""
  583 +
  584 +#: src/core/toggles/table.c:286
  585 +msgid "Enable use of network keep alive"
  586 +msgstr ""
  587 +
  588 +#: src/core/actions/table.c:605
  589 +msgid "Enter"
  590 +msgstr ""
  591 +
  592 +#: src/core/actions/table.c:574 src/core/actions/table.c:575
  593 +msgid "Erase"
  594 +msgstr ""
  595 +
  596 +#: src/core/actions/table.c:546
  597 +msgid "Erase EOF"
  598 +msgstr ""
  599 +
  600 +#: src/core/actions/table.c:560
  601 +msgid "Erase EOL"
  602 +msgstr ""
  603 +
  604 +#: src/core/actions/table.c:547
  605 +msgid "Erase End Of Field"
  606 +msgstr ""
  607 +
  608 +#: src/core/actions/table.c:561
  609 +msgid "Erase End Of Line"
  610 +msgstr ""
  611 +
  612 +#: src/core/actions/table.c:533
  613 +msgid "Erase all unprotected fields"
  614 +msgstr ""
  615 +
  616 +#: src/core/actions/table.c:532
  617 +msgid "Erase input"
  618 +msgstr ""
  619 +
  620 +#: src/network_modules/tools.c:100
  621 +msgid "Erro sending data to host"
  622 +msgstr ""
  623 +
  624 +#: src/core/ft/ft_dft.c:413 src/core/ft/ft_cut.c:408
  625 +#, c-format
  626 +msgid "Error \"%s\" reading from local file (rc=%d)"
  627 +msgstr ""
  628 +
  629 +#: src/core/ft/ft_dft.c:306 src/core/ft/ft_cut.c:504
  630 +#, c-format
  631 +msgid "Error \"%s\" writing to local file (rc=%d)"
  632 +msgstr ""
  633 +
  634 +#: src/core/ft/ftmessages.c:45
  635 +msgid "Error in file transfer: file transfer canceled"
  636 +msgstr ""
  637 +
  638 +#: src/core/ft/ftmessages.c:87
  639 +msgid "Error reading file from host: file transfer canceled"
  640 +msgstr ""
  641 +
  642 +#: src/network_modules/openssl/main.c:170
  643 +msgid "Error reading from host"
  644 +msgstr ""
  645 +
  646 +#: src/core/windows/http.c:145
  647 +msgid "Error receiving HTTP response."
  648 +msgstr ""
  649 +
  650 +#: src/network_modules/tools.c:66 src/network_modules/tools.c:82
  651 +msgid "Error receiving data from host"
  652 +msgstr ""
  653 +
  654 +#: src/core/ft/ftmessages.c:145
  655 +msgid "Error while reading or writing to host disk: file transfer canceled"
  656 +msgstr ""
  657 +
  658 +#: src/core/ft/ftmessages.c:80
  659 +msgid "Error writing file to host: file transfer canceled"
  660 +msgstr ""
  661 +
  662 +#: src/network_modules/openssl/main.c:123
  663 +msgid "Error writing to host."
  664 +msgstr ""
  665 +
  666 +#: src/core/telnet.c:1789
  667 +msgid "Exiting"
  668 +msgstr ""
  669 +
  670 +#: src/core/actions/table.c:663
  671 +msgid "FM key"
  672 +msgstr ""
  673 +
  674 +#: src/core/actions/table.c:664
  675 +msgid "Field Mark"
  676 +msgstr ""
  677 +
  678 +#: src/core/actions/table.c:443
  679 +msgid "Field end"
  680 +msgstr ""
  681 +
  682 +#: src/core/ft/ftmessages.c:52
  683 +msgid "File transfer complete"
  684 +msgstr ""
  685 +
  686 +#: src/core/ft/ftmessages.c:59
  687 +msgid "File transfer complete with records segmented"
  688 +msgstr ""
  689 +
  690 +#: src/core/ft/ft.c:247
  691 +msgid "File transfer is already active in this session."
  692 +msgstr ""
  693 +
  694 +#: src/core/actions/table.c:457
  695 +msgid "First field"
  696 +msgstr ""
  697 +
  698 +#: src/network_modules/openssl/messages.c:215
  699 +msgid "Format error in CRL's lastUpdate field"
  700 +msgstr ""
  701 +
  702 +#: src/network_modules/openssl/messages.c:226
  703 +msgid "Format error in CRL's nextUpdate field"
  704 +msgstr ""
  705 +
  706 +#: src/network_modules/openssl/messages.c:204
  707 +msgid "Format error in certificate's notAfter field"
  708 +msgstr ""
  709 +
  710 +#: src/network_modules/openssl/messages.c:193
  711 +msgid "Format error in certificate's notBefore field"
  712 +msgstr ""
  713 +
  714 +#: src/core/properties/boolean.c:177
  715 +msgid "Formatted screen"
  716 +msgstr ""
  717 +
  718 +#: src/core/toggles/table.c:175 src/core/toggles/table.c:176
  719 +msgid "Full Screen"
  720 +msgstr ""
  721 +
  722 +#: src/core/telnet.c:1783
  723 +msgid "Half connect"
  724 +msgstr ""
  725 +
  726 +#: src/core/properties/boolean.c:156
  727 +msgid "Has selected area"
  728 +msgstr ""
  729 +
  730 +#: src/core/properties/string.c:113
  731 +msgid "Host charset"
  732 +msgstr ""
  733 +
  734 +#: src/core/ft/ft.c:620
  735 +msgid "Host disconnected, transfer cancelled"
  736 +msgstr ""
  737 +
  738 +#: src/core/telnet.c:1233
  739 +msgid "Host illegally added function(s)"
  740 +msgstr ""
  741 +
  742 +#: src/core/ft/ftmessages.c:222
  743 +msgid "Host program error code xxxxxxxxxx: file transfer canceled"
  744 +msgstr ""
  745 +
  746 +#: src/core/telnet.c:1163
  747 +msgid "Host rejected device type or request type"
  748 +msgstr ""
  749 +
  750 +#: src/core/telnet.c:1173
  751 +msgid "Host rejected resource(s)"
  752 +msgstr ""
  753 +
  754 +#: src/core/properties/string.c:90
  755 +msgid "Host type name"
  756 +msgstr ""
  757 +
  758 +#: src/core/properties/unsigned.c:90
  759 +msgid "Host type number"
  760 +msgstr ""
  761 +
  762 +#: src/core/options.c:48
  763 +msgid "IBM AS/400"
  764 +msgstr ""
  765 +
  766 +#: src/core/options.c:42
  767 +msgid "IBM S/390"
  768 +msgstr ""
  769 +
  770 +#: src/core/properties/signed.c:77
  771 +msgid "ID of the session security state"
  772 +msgstr ""
  773 +
  774 +#: src/core/toggles/table.c:197
  775 +msgid ""
  776 +"If set the characters pasted over protected areas will be skipped to avoid "
  777 +"locks"
  778 +msgstr ""
  779 +
  780 +#: src/core/toggles/table.c:217
  781 +msgid "If set the selection will not be removed on screen changes"
  782 +msgstr ""
  783 +
  784 +#: src/core/toggles/table.c:177
  785 +msgid "If set, asks to place the toplevel window in the fullscreen state"
  786 +msgstr ""
  787 +
  788 +#: src/core/toggles/table.c:147
  789 +msgid ""
  790 +"If set, puts restrictions on how pasted text is placed on the screen. The "
  791 +"position of the cursor at the time the paste operation is begun is used as a "
  792 +"left margin. No pasted text will fill any area of the screen to the left of "
  793 +"that position. This option is useful for pasting into certain IBM editors "
  794 +"that use the left side of the screen for control information"
  795 +msgstr ""
  796 +
  797 +#: src/core/toggles/table.c:105
  798 +msgid ""
  799 +"If set, the NVT terminal emulator automatically assumes a NEWLINE character "
  800 +"when it reaches the end of a line."
  801 +msgstr ""
  802 +
  803 +#: src/core/toggles/table.c:64
  804 +msgid "If set, the cursor blinks"
  805 +msgstr ""
  806 +
  807 +#: src/core/toggles/table.c:53
  808 +msgid "If set, the terminal operates in uppercase-only mode"
  809 +msgstr ""
  810 +
  811 +#: src/core/toggles/table.c:157
  812 +msgid ""
  813 +"If set, the terminal will always select rectangular areas of the screen. "
  814 +"Otherwise, it selects continuous regions of the screen"
  815 +msgstr ""
  816 +
  817 +#: src/core/toggles/table.c:167
  818 +msgid ""
  819 +"If set, the terminal will display a crosshair over the cursor: lines "
  820 +"extending the full width and height of the screen, centered over the cursor "
  821 +"position. This makes locating the cursor on the screen much easier"
  822 +msgstr ""
  823 +
  824 +#: src/core/toggles/table.c:74
  825 +msgid ""
  826 +"If set, the time taken by the host to process an AID is displayed on the "
  827 +"status line"
  828 +msgstr ""
  829 +
  830 +#: src/core/ft/ft_cut.c:484
  831 +msgid "Illegal frame length"
  832 +msgstr ""
  833 +
  834 +#: src/core/ft/ftmessages.c:138
  835 +msgid "Incorrect option specified: file transfer canceled"
  836 +msgstr ""
  837 +
  838 +#: src/core/ft/ftmessages.c:101
  839 +msgid "Incorrect request code: file transfer canceled"
  840 +msgstr ""
  841 +
  842 +#: src/core/toggles/table.c:185
  843 +msgid "Insert"
  844 +msgstr ""
  845 +
  846 +#: src/network_modules/openssl/messages.c:313
  847 +msgid "Invalid CA certificate"
  848 +msgstr ""
  849 +
  850 +#: src/core/ft/ftmessages.c:166
  851 +msgid "Invalid option xxxxxxxx with APPEND: file transfer canceled"
  852 +msgstr ""
  853 +
  854 +#: src/core/ft/ftmessages.c:180
  855 +msgid "Invalid option xxxxxxxx with PDS: file transfer canceled"
  856 +msgstr ""
  857 +
  858 +#: src/core/ft/ftmessages.c:159
  859 +msgid "Invalid option xxxxxxxx with RECEIVE: file transfer canceled"
  860 +msgstr ""
  861 +
  862 +#: src/core/ft/ftmessages.c:173
  863 +msgid "Invalid option xxxxxxxx without SPACE: file transfer canceled"
  864 +msgstr ""
  865 +
  866 +#: src/core/ft/ftmessages.c:152
  867 +msgid "Invalid option xxxxxxxx: file transfer canceled"
  868 +msgstr ""
  869 +
  870 +#: src/core/ctlr.c:176 src/core/ctlr.c:188 src/core/ctlr.c:201
  871 +#: src/core/ctlr.c:213
  872 +msgid "Invalid oversize"
  873 +msgstr ""
  874 +
  875 +#: src/core/properties/boolean.c:77
  876 +msgid "Is connection secure"
  877 +msgstr ""
  878 +
  879 +#: src/core/properties/boolean.c:170
  880 +msgid "Is starting (no first screen)?"
  881 +msgstr ""
  882 +
  883 +#: src/core/properties/boolean.c:70
  884 +msgid "Is terminal connected"
  885 +msgstr ""
  886 +
  887 +#: src/core/properties/boolean.c:149
  888 +msgid "Is terminal in the INITIAL_E state?"
  889 +msgstr ""
  890 +
  891 +#: src/core/properties/boolean.c:63
  892 +msgid "Is terminal ready"
  893 +msgstr ""
  894 +
  895 +#: src/core/toggles/table.c:215 src/core/toggles/table.c:216
  896 +msgid "Keep selected"
  897 +msgstr ""
  898 +
  899 +#: src/network_modules/openssl/messages.c:401
  900 +msgid "Key usage does not include certificate signing"
  901 +msgstr ""
  902 +
  903 +#: src/core/paste.c:375
  904 +msgid "Keyboard is locked"
  905 +msgstr ""
  906 +
  907 +#: src/core/properties/unsigned.c:169
  908 +msgid "Keyboard lock status"
  909 +msgstr ""
  910 +
  911 +#: src/core/windows/ldap.c:179
  912 +msgid "LDAP Search did not produce any attributes."
  913 +msgstr ""
  914 +
  915 +#: src/core/linux/ldap.c:147 src/core/macos/ldap.c:147
  916 +msgid "LDAP search did not produce any attributes."
  917 +msgstr ""
  918 +
  919 +#: src/core/linux/ldap.c:157 src/core/macos/ldap.c:157
  920 +msgid "LDAP search did not produce any values."
  921 +msgstr ""
  922 +
  923 +#: src/core/windows/ldap.c:186
  924 +msgid "LDAPSearch did not produce any values."
  925 +msgstr ""
  926 +
  927 +#: src/core/properties/signed.c:70
  928 +msgid "Latest program message"
  929 +msgstr ""
  930 +
  931 +#: src/core/actions/table.c:171
  932 +msgid "Left"
  933 +msgstr ""
  934 +
  935 +#: src/core/telnet.c:1786
  936 +msgid "Line mode"
  937 +msgstr ""
  938 +
  939 +#: src/core/properties/boolean.c:184
  940 +msgid "Lock keyboard on operator error"
  941 +msgstr ""
  942 +
  943 +#: src/core/toggles/table.c:145
  944 +msgid "Margined paste"
  945 +msgstr ""
  946 +
  947 +#: src/core/properties/unsigned.c:131
  948 +msgid "Maximum screen height in rows"
  949 +msgstr ""
  950 +
  951 +#: src/core/properties/unsigned.c:124
  952 +msgid "Maximum screen width in columns"
  953 +msgstr ""
  954 +
  955 +#: src/core/properties/string.c:82
  956 +msgid "Model name"
  957 +msgstr ""
  958 +
  959 +#: src/core/toggles/table.c:51
  960 +msgid "Monocase"
  961 +msgstr ""
  962 +
  963 +#: src/core/actions/table.c:329
  964 +msgid "Move cursor down and select"
  965 +msgstr ""
  966 +
  967 +#: src/core/actions/table.c:343
  968 +msgid "Move cursor left and select"
  969 +msgstr ""
  970 +
  971 +#: src/core/actions/table.c:357
  972 +msgid "Move cursor rigth and select"
  973 +msgstr ""
  974 +
  975 +#: src/core/actions/table.c:315
  976 +msgid "Move cursor up and select"
  977 +msgstr ""
  978 +
  979 +#: src/core/actions/table.c:385
  980 +msgid "Move selection down"
  981 +msgstr ""
  982 +
  983 +#: src/core/actions/table.c:399
  984 +msgid "Move selection left"
  985 +msgstr ""
  986 +
  987 +#: src/core/actions/table.c:413
  988 +msgid "Move selection right"
  989 +msgstr ""
  990 +
  991 +#: src/core/actions/table.c:371
  992 +msgid "Move selection up"
  993 +msgstr ""
  994 +
  995 +#: src/core/actions/table.c:444
  996 +msgid ""
  997 +"Move the cursor to the first blank after the last non blank in the field"
  998 +msgstr ""
  999 +
  1000 +#: src/core/actions/table.c:458
  1001 +msgid "Move to first unprotected field on screen"
  1002 +msgstr ""
  1003 +
  1004 +#: src/core/actions/table.c:472
  1005 +msgid "Move to the next unprotected field on screen"
  1006 +msgstr ""
  1007 +
  1008 +#: src/core/actions/table.c:486
  1009 +msgid "Move to the previous unprotected field on screen"
  1010 +msgstr ""
  1011 +
  1012 +#: src/core/telnet.c:304 src/core/linux/event_dispatcher.c:130
  1013 +#: src/core/linux/connect.c:200 src/core/windows/event_dispatcher.c:135
  1014 +#: src/core/windows/connect.c:223 src/core/macos/event_dispatcher.c:130
  1015 +#: src/core/macos/connect.c:200
  1016 +msgid "Network error"
  1017 +msgstr ""
  1018 +
  1019 +#: src/core/toggles/table.c:285
  1020 +msgid "Network keep alive"
  1021 +msgstr ""
  1022 +
  1023 +#: src/core/actions/table.c:199
  1024 +msgid "New line"
  1025 +msgstr ""
  1026 +
  1027 +#: src/core/actions/table.c:471
  1028 +msgid "Next field"
  1029 +msgstr ""
  1030 +
  1031 +#: src/core/actions/table.c:227
  1032 +msgid "Next word"
  1033 +msgstr ""
  1034 +
  1035 +#: src/network_modules/openssl/start.c:53
  1036 +msgid "No LDAP support"
  1037 +msgstr ""
  1038 +
  1039 +#: src/network_modules/default/main.c:149
  1040 +msgid "No TLS/SSL support on this session"
  1041 +msgstr ""
  1042 +
  1043 +#: src/core/linux/download.c:55 src/core/windows/download.c:62
  1044 +#: src/core/macos/download.c:55
  1045 +msgid "No handler for URL scheme."
  1046 +msgstr ""
  1047 +
  1048 +#: src/network_modules/openssl/messages.c:292
  1049 +msgid ""
  1050 +"No signatures could be verified because the chain contains only one "
  1051 +"certificate and it is not self signed."
  1052 +msgstr ""
  1053 +
  1054 +#: src/core/ft/ft.c:97
  1055 +msgid "No transfer in progress"
  1056 +msgstr ""
  1057 +
  1058 +#: src/core/properties/boolean.c:198
  1059 +msgid "Non zero if the download of CRL is enabled"
  1060 +msgstr ""
  1061 +
  1062 +#: src/core/properties/boolean.c:93
  1063 +msgid "Non zero if the host is AS400."
  1064 +msgstr ""
  1065 +
  1066 +#: src/core/properties/boolean.c:85
  1067 +msgid "Non zero if the host is TSO."
  1068 +msgstr ""
  1069 +
  1070 +#: src/core/windows/connect.c:307
  1071 +msgid "Not connected to host"
  1072 +msgstr ""
  1073 +
  1074 +#: src/core/ft/ft.c:626
  1075 +msgid "Not in 3270 mode, transfer cancelled"
  1076 +msgstr ""
  1077 +
  1078 +#: src/core/ft/ftmessages.c:187
  1079 +msgid "Only one of TRACKS, CYLINDERS, AVBLOCK allowed: file transfer canceled"
  1080 +msgstr ""
  1081 +
  1082 +#: src/core/options.c:54
  1083 +msgid "Other (TSO)"
  1084 +msgstr ""
  1085 +
  1086 +#: src/core/options.c:60
  1087 +msgid "Other (VM/CMS)"
  1088 +msgstr ""
  1089 +
  1090 +#: src/network_modules/openssl/messages.c:237
  1091 +msgid "Out of memory"
  1092 +msgstr ""
  1093 +
  1094 +#: src/core/actions/table.c:782 src/core/actions/table.c:796
  1095 +#: src/core/actions/table.c:810
  1096 +msgid "PA1"
  1097 +msgstr ""
  1098 +
  1099 +#: src/core/actions/table.c:241
  1100 +msgid "Paste from file"
  1101 +msgstr ""
  1102 +
  1103 +#: src/core/actions/table.c:242
  1104 +msgid "Paste from text file"
  1105 +msgstr ""
  1106 +
  1107 +#: src/core/actions/table.c:719 src/core/actions/table.c:720
  1108 +msgid "Paste next"
  1109 +msgstr ""
  1110 +
  1111 +#: src/core/toggles/table.c:146
  1112 +msgid "Paste with left margin"
  1113 +msgstr ""
  1114 +
  1115 +#: src/network_modules/openssl/messages.c:324
  1116 +msgid "Path length constraint exceeded"
  1117 +msgstr ""
  1118 +
  1119 +#: src/core/telnet.c:1763
  1120 +msgid "Pending"
  1121 +msgstr ""
  1122 +
  1123 +#: src/core/ft/ftmessages.c:66
  1124 +msgid "Personal computer filespec incorrect: file transfer canceled"
  1125 +msgstr ""
  1126 +
  1127 +#: src/core/properties/string.c:152
  1128 +msgid "Preferred protocol for CRL download"
  1129 +msgstr ""
  1130 +
  1131 +#: src/core/actions/table.c:485
  1132 +msgid "Previous field"
  1133 +msgstr ""
  1134 +
  1135 +#: src/core/actions/table.c:213
  1136 +msgid "Previous word"
  1137 +msgstr ""
  1138 +
  1139 +#: src/core/telnet.c:1788
  1140 +msgid "Printer"
  1141 +msgstr ""
  1142 +
  1143 +#: src/core/actions/table.c:783
  1144 +msgid "Program Action 1"
  1145 +msgstr ""
  1146 +
  1147 +#: src/core/actions/table.c:797
  1148 +msgid "Program Action 2"
  1149 +msgstr ""
  1150 +
  1151 +#: src/core/actions/table.c:811
  1152 +msgid "Program Action 3"
  1153 +msgstr ""
  1154 +
  1155 +#: src/core/rpq.c:229
  1156 +#, c-format
  1157 +msgid "RPQ %s term omitted due to insufficient space"
  1158 +msgstr ""
  1159 +
  1160 +#: src/core/rpq.c:338
  1161 +#, c-format
  1162 +msgid "RPQ %s term override ignored"
  1163 +msgstr ""
  1164 +
  1165 +#: src/core/rpq.c:642 src/core/rpq.c:712
  1166 +#, c-format
  1167 +msgid "RPQ ADDRESS term has unrecognized family %u"
  1168 +msgstr ""
  1169 +
  1170 +#: src/core/rpq.c:650 src/core/rpq.c:679 src/core/rpq.c:719
  1171 +msgid "RPQ ADDRESS term incomplete due to space limit"
  1172 +msgstr ""
  1173 +
  1174 +#: src/core/rpq.c:222
  1175 +msgid "RPQ Error"
  1176 +msgstr ""
  1177 +
  1178 +#: src/core/rpq.c:403 src/core/rpq.c:412
  1179 +msgid "RPQ TIMEZONE term is invalid - use +/-hhmm"
  1180 +msgstr ""
  1181 +
  1182 +#: src/core/rpq.c:520
  1183 +msgid "RPQ USER term has non-hex character"
  1184 +msgstr ""
  1185 +
  1186 +#: src/core/rpq.c:545
  1187 +msgid "RPQ USER term has odd number of hex digits"
  1188 +msgstr ""
  1189 +
  1190 +#: src/core/rpq.c:526
  1191 +#, c-format
  1192 +msgid "RPQ USER term truncated after %d bytes"
  1193 +msgstr ""
  1194 +
  1195 +#: src/core/rpq.c:570
  1196 +#, c-format
  1197 +msgid "RPQ USER term truncated after %d characters"
  1198 +msgstr ""
  1199 +
  1200 +#: src/core/rpq.c:350
  1201 +#, c-format
  1202 +msgid "RPQ term \"%s\" is unrecognized"
  1203 +msgstr ""
  1204 +
  1205 +#: src/core/rpq.c:224
  1206 +#, c-format
  1207 +msgid "RPQ term %d is unknown"
  1208 +msgstr ""
  1209 +
  1210 +#: src/core/rpq.c:465
  1211 +msgid "RPQ timezone exceeds 12 hour UTC offset"
  1212 +msgstr ""
  1213 +
  1214 +#: src/core/rpq.c:434 src/core/rpq.c:444
  1215 +msgid "RPQ: Unable to determine workstation UTC time"
  1216 +msgstr ""
  1217 +
  1218 +#: src/core/rpq.c:424
  1219 +msgid "RPQ: Unable to determine workstation local time"
  1220 +msgstr ""
  1221 +
  1222 +#: src/core/rpq.c:655
  1223 +#, c-format
  1224 +msgid "RPQ: can't resolve '%s': %s"
  1225 +msgstr ""
  1226 +
  1227 +#: src/core/rpq.c:668
  1228 +msgid "RPQ: gethostbyname error"
  1229 +msgstr ""
  1230 +
  1231 +#: src/core/actions/table.c:113
  1232 +msgid "Reconnect to the same host"
  1233 +msgstr ""
  1234 +
  1235 +#: src/core/telnet.c:1787
  1236 +msgid "Remodel"
  1237 +msgstr ""
  1238 +
  1239 +#: src/core/actions/table.c:272 src/core/actions/table.c:273
  1240 +msgid "Remove selection"
  1241 +msgstr ""
  1242 +
  1243 +#: src/core/ft/ft.c:192
  1244 +msgid "Request failed"
  1245 +msgstr ""
  1246 +
  1247 +#: src/core/ft/ftmessages.c:94
  1248 +msgid "Required host storage unavailable: file transfer canceled"
  1249 +msgstr ""
  1250 +
  1251 +#: src/core/actions/table.c:286 src/core/actions/table.c:287
  1252 +msgid "Reselect"
  1253 +msgstr ""
  1254 +
  1255 +#: src/core/actions/table.c:620
  1256 +msgid "Reset"
  1257 +msgstr ""
  1258 +
  1259 +#: src/core/actions/table.c:621
  1260 +msgid "Reset keyboard lock"
  1261 +msgstr ""
  1262 +
  1263 +#: src/core/toggles/table.c:276
  1264 +msgid "Resize on alternate screen"
  1265 +msgstr ""
  1266 +
  1267 +#: src/core/telnet.c:1762 src/core/telnet.c:1781
  1268 +msgid "Resolving"
  1269 +msgstr ""
  1270 +
  1271 +#: src/core/actions/table.c:185
  1272 +msgid "Right"
  1273 +msgstr ""
  1274 +
  1275 +#: src/core/ft/ftmessages.c:188
  1276 +msgid ""
  1277 +"SPACE can be specified in units of TRACKS, CYLINDERS, or AVBLOCK, and only "
  1278 +"one option can be used."
  1279 +msgstr ""
  1280 +
  1281 +#: src/network_modules/openssl/start.c:229
  1282 +msgid "SSL negotiation failed"
  1283 +msgstr ""
  1284 +
  1285 +#: src/core/properties/unsigned.c:138
  1286 +msgid "Screen buffer length in bytes"
  1287 +msgstr ""
  1288 +
  1289 +#: src/core/properties/string.c:181
  1290 +msgid "Screen oversize if larger than the chosen model"
  1291 +msgstr ""
  1292 +
  1293 +#: src/network_modules/openssl/messages.c:52
  1294 +msgid "Secure connection was successful."
  1295 +msgstr ""
  1296 +
  1297 +#: src/core/actions/table.c:328
  1298 +msgid "Select Down"
  1299 +msgstr ""
  1300 +
  1301 +#: src/core/actions/table.c:429
  1302 +msgid "Select Field"
  1303 +msgstr ""
  1304 +
  1305 +#: src/core/actions/table.c:342
  1306 +msgid "Select Left"
  1307 +msgstr ""
  1308 +
  1309 +#: src/core/actions/table.c:314
  1310 +msgid "Select UP"
  1311 +msgstr ""
  1312 +
  1313 +#: src/core/actions/table.c:258 src/core/actions/table.c:259
  1314 +msgid "Select all"
  1315 +msgstr ""
  1316 +
  1317 +#: src/core/toggles/table.c:155 src/core/toggles/table.c:156
  1318 +msgid "Select by rectangles"
  1319 +msgstr ""
  1320 +
  1321 +#: src/core/actions/table.c:428
  1322 +msgid "Select field"
  1323 +msgstr ""
  1324 +
  1325 +#: src/core/actions/table.c:356
  1326 +msgid "Select right"
  1327 +msgstr ""
  1328 +
  1329 +#: src/core/actions/table.c:300 src/core/actions/table.c:301
  1330 +msgid "Select word"
  1331 +msgstr ""
  1332 +
  1333 +#: src/core/linux/event_dispatcher.c:131
  1334 +#: src/core/windows/event_dispatcher.c:136
  1335 +#: src/core/macos/event_dispatcher.c:131
  1336 +msgid "Select() failed when processing for events."
  1337 +msgstr ""
  1338 +
  1339 +#: src/core/actions/table.c:384
  1340 +msgid "Selection down"
  1341 +msgstr ""
  1342 +
  1343 +#: src/core/actions/table.c:398
  1344 +msgid "Selection left"
  1345 +msgstr ""
  1346 +
  1347 +#: src/core/actions/table.c:412
  1348 +msgid "Selection right"
  1349 +msgstr ""
  1350 +
  1351 +#: src/core/actions/table.c:370
  1352 +msgid "Selection up"
  1353 +msgstr ""
  1354 +
  1355 +#: src/network_modules/openssl/messages.c:252
  1356 +msgid "Self signed certificate"
  1357 +msgstr ""
  1358 +
  1359 +#: src/network_modules/openssl/messages.c:269
  1360 +msgid "Self signed certificate in certificate chain"
  1361 +msgstr ""
  1362 +
  1363 +#: src/core/actions/table.c:606
  1364 +msgid "Send an \"Enter\" action"
  1365 +msgstr ""
  1366 +
  1367 +#: src/core/toggles/table.c:186
  1368 +msgid "Set insert mode"
  1369 +msgstr ""
  1370 +
  1371 +#: src/core/toggles/table.c:265
  1372 +msgid "Show Field"
  1373 +msgstr ""
  1374 +
  1375 +#: src/core/toggles/table.c:266
  1376 +msgid "Show Field attributes"
  1377 +msgstr ""
  1378 +
  1379 +#: src/core/toggles/table.c:226
  1380 +msgid "Show Underline"
  1381 +msgstr ""
  1382 +
  1383 +#: src/core/actions/table.c:766
  1384 +msgid "Show charset table"
  1385 +msgstr ""
  1386 +
  1387 +#: src/core/actions/table.c:752
  1388 +msgid "Show test pattern"
  1389 +msgstr ""
  1390 +
  1391 +#: src/core/toggles/table.c:72 src/core/toggles/table.c:73
  1392 +msgid "Show timer when processing"
  1393 +msgstr ""
  1394 +
  1395 +#: src/core/toggles/table.c:195 src/core/toggles/table.c:196
  1396 +msgid "Smart paste"
  1397 +msgstr ""
  1398 +
  1399 +#: src/network_modules/tools.c:173 src/network_modules/tools.c:189
  1400 +msgid "Socket error"
  1401 +msgstr ""
  1402 +
  1403 +#: src/core/toggles/table.c:255
  1404 +msgid "Sound"
  1405 +msgstr ""
  1406 +
  1407 +#: src/core/properties/boolean.c:128
  1408 +msgid "State is 3270, TN3270e or SSCP"
  1409 +msgstr ""
  1410 +
  1411 +#: src/core/properties/boolean.c:163
  1412 +msgid "Still have text to paste"
  1413 +msgstr ""
  1414 +
  1415 +#: src/network_modules/openssl/messages.c:368
  1416 +msgid "Subject issuer mismatch"
  1417 +msgstr ""
  1418 +
  1419 +#: src/core/actions/table.c:733
  1420 +msgid "Sys Req"
  1421 +msgstr ""
  1422 +
  1423 +#: src/core/actions/table.c:734
  1424 +msgid "Sys Request"
  1425 +msgstr ""
  1426 +
  1427 +#: src/core/telnet.c:995
  1428 +msgid "TLS negotiation failure"
  1429 +msgstr ""
  1430 +
  1431 +#: src/core/telnet.c:1766
  1432 +msgid "TN3270 3270"
  1433 +msgstr ""
  1434 +
  1435 +#: src/core/telnet.c:1765
  1436 +msgid "TN3270 NVT"
  1437 +msgstr ""
  1438 +
  1439 +#: src/core/telnet.c:1767
  1440 +msgid "TN3270E"
  1441 +msgstr ""
  1442 +
  1443 +#: src/core/telnet.c:1770
  1444 +msgid "TN3270E 3270"
  1445 +msgstr ""
  1446 +
  1447 +#: src/core/telnet.c:1768
  1448 +msgid "TN3270E NVT"
  1449 +msgstr ""
  1450 +
  1451 +#: src/core/telnet.c:1769
  1452 +msgid "TN3270E SSCP-LU"
  1453 +msgstr ""
  1454 +
  1455 +#: src/core/properties/unsigned.c:99
  1456 +msgid "Terminal model"
  1457 +msgstr ""
  1458 +
  1459 +#: src/core/properties/string.c:104
  1460 +msgid "Terminal name"
  1461 +msgstr ""
  1462 +
  1463 +#: src/core/properties/string.c:97
  1464 +msgid "Terminal type"
  1465 +msgstr ""
  1466 +
  1467 +#: src/core/actions/table.c:751
  1468 +msgid "Test pattern"
  1469 +msgstr ""
  1470 +
  1471 +#: src/core/ft/ftmessages.c:216
  1472 +msgid ""
  1473 +"The CMS disk is full, or the maximum number of files on the minidisk (3400) "
  1474 +"has been reached, or the maximum number of data blocks per file (16060) has "
  1475 +"been reached."
  1476 +msgstr ""
  1477 +
  1478 +#: src/network_modules/openssl/messages.c:182
  1479 +msgid "The CRL has expired."
  1480 +msgstr ""
  1481 +
  1482 +#: src/network_modules/openssl/messages.c:167
  1483 +msgid "The CRL is not yet valid."
  1484 +msgstr ""
  1485 +
  1486 +#: src/network_modules/openssl/messages.c:216
  1487 +msgid "The CRL lastUpdate field contains an invalid time."
  1488 +msgstr ""
  1489 +
  1490 +#: src/network_modules/openssl/messages.c:227
  1491 +msgid "The CRL nextUpdate field contains an invalid time."
  1492 +msgstr ""
  1493 +
  1494 +#: src/network_modules/openssl/messages.c:102
  1495 +msgid ""
  1496 +"The CRL signature could not be decrypted: this means that the actual "
  1497 +"signature value could not be determined rather than it not matching the "
  1498 +"expected value. Unused."
  1499 +msgstr ""
  1500 +
  1501 +#: src/network_modules/openssl/messages.c:183
  1502 +msgid "The Certificate revocation list (CRL) has expired."
  1503 +msgstr ""
  1504 +
  1505 +#: src/network_modules/openssl/messages.c:168
  1506 +msgid "The Certificate revocation list (CRL) is not yet valid."
  1507 +msgstr ""
  1508 +
  1509 +#: src/network_modules/openssl/messages.c:79
  1510 +msgid ""
  1511 +"The Certificate revocation list (CRL) of a certificate could not be found."
  1512 +msgstr ""
  1513 +
  1514 +#: src/network_modules/openssl/main.c:124
  1515 +#: src/network_modules/openssl/main.c:171
  1516 +#, c-format
  1517 +msgid "The SSL error message was %s"
  1518 +msgstr ""
  1519 +
  1520 +#: src/core/linux/connect.c:191 src/core/macos/connect.c:191
  1521 +#, c-format
  1522 +msgid "The System error was '%s' (rc=%d)"
  1523 +msgstr ""
  1524 +
  1525 +#: src/core/linux/ldap.c:82 src/core/linux/ldap.c:91
  1526 +#: src/core/windows/ldap.c:101 src/core/windows/ldap.c:110
  1527 +#: src/core/macos/ldap.c:82 src/core/macos/ldap.c:91
  1528 +msgid "The URL argument should be in the format ldap://[HOST]/[DN]?attribute"
  1529 +msgstr ""
  1530 +
  1531 +#: src/network_modules/openssl/messages.c:325
  1532 +msgid "The basicConstraints pathlength parameter has been exceeded."
  1533 +msgstr ""
  1534 +
  1535 +#: src/network_modules/openssl/messages.c:270
  1536 +msgid ""
  1537 +"The certificate chain could be built up using the untrusted certificates but "
  1538 +"the root could not be found locally."
  1539 +msgstr ""
  1540 +
  1541 +#: src/network_modules/openssl/messages.c:303
  1542 +msgid "The certificate has been revoked."
  1543 +msgstr ""
  1544 +
  1545 +#: src/network_modules/openssl/messages.c:157
  1546 +msgid ""
  1547 +"The certificate has expired: that is the notAfter date is before the current "
  1548 +"time."
  1549 +msgstr ""
  1550 +
  1551 +#: src/network_modules/openssl/messages.c:146
  1552 +msgid ""
  1553 +"The certificate is not yet valid: the notBefore date is after the current "
  1554 +"time."
  1555 +msgstr ""
  1556 +
  1557 +#: src/network_modules/openssl/messages.c:205
  1558 +msgid "The certificate notAfter field contains an invalid time."
  1559 +msgstr ""
  1560 +
  1561 +#: src/network_modules/openssl/messages.c:194
  1562 +msgid "The certificate notBefore field contains an invalid time."
  1563 +msgstr ""
  1564 +
  1565 +#: src/network_modules/openssl/messages.c:91
  1566 +msgid ""
  1567 +"The certificate signature could not be decrypted. This means that the actual "
  1568 +"signature value could not be determined rather than it not matching the "
  1569 +"expected value, this is only meaningful for RSA keys."
  1570 +msgstr ""
  1571 +
  1572 +#: src/core/properties/unsigned.c:81
  1573 +msgid "The color type"
  1574 +msgstr ""
  1575 +
  1576 +#: src/network_modules/state.c:77
  1577 +msgid "The connection is insecure"
  1578 +msgstr ""
  1579 +
  1580 +#: src/network_modules/openssl/messages.c:53
  1581 +msgid "The connection is secure and the host identity was confirmed."
  1582 +msgstr ""
  1583 +
  1584 +#: src/network_modules/openssl/messages.c:391
  1585 +msgid ""
  1586 +"The current candidate issuer certificate was rejected because its issuer "
  1587 +"name and serial number was present and did not match the authority key "
  1588 +"identifier of the current certificate. Only displayed when the -"
  1589 +"issuer_checks option is set."
  1590 +msgstr ""
  1591 +
  1592 +#: src/network_modules/openssl/messages.c:402
  1593 +msgid ""
  1594 +"The current candidate issuer certificate was rejected because its keyUsage "
  1595 +"extension does not permit certificate signing."
  1596 +msgstr ""
  1597 +
  1598 +#: src/network_modules/openssl/messages.c:380
  1599 +msgid ""
  1600 +"The current candidate issuer certificate was rejected because its subject "
  1601 +"key identifier was present and did not match the authority key identifier "
  1602 +"current certificate. Only displayed when the -issuer_checks option is set."
  1603 +msgstr ""
  1604 +
  1605 +#: src/network_modules/openssl/messages.c:369
  1606 +msgid ""
  1607 +"The current candidate issuer certificate was rejected because its subject "
  1608 +"name did not match the issuer name of the current certificate. Only "
  1609 +"displayed when the -issuer_checks option is set."
  1610 +msgstr ""
  1611 +
  1612 +#: src/core/properties/unsigned.c:162
  1613 +msgid "The delay between the host unlocking the keyboard and the actual unlock"
  1614 +msgstr ""
  1615 +
  1616 +#: src/core/ft/ftmessages.c:60
  1617 +msgid ""
  1618 +"The file transfer operation has been completed, and any record greater than "
  1619 +"the logical record length (LRECL) of the file being appended has been "
  1620 +"divided and becomes multiple records."
  1621 +msgstr ""
  1622 +
  1623 +#: src/core/ft/ftmessages.c:53
  1624 +msgid "The file transfer operation has been successfully completed."
  1625 +msgstr ""
  1626 +
  1627 +#: src/core/ctlr.c:215
  1628 +#, c-format
  1629 +msgid "The height %d is less than model %d rows (%d)"
  1630 +msgstr ""
  1631 +
  1632 +#: src/core/ft/ftmessages.c:81 src/core/ft/ftmessages.c:88
  1633 +msgid ""
  1634 +"The host program has detected an error in the file data during a RECEIVE "
  1635 +"operation."
  1636 +msgstr ""
  1637 +
  1638 +#: src/network_modules/openssl/messages.c:281
  1639 +msgid ""
  1640 +"The issuer certificate could not be found: this occurs if the issuer "
  1641 +"certificate of an untrusted certificate cannot be found."
  1642 +msgstr ""
  1643 +
  1644 +#: src/network_modules/openssl/messages.c:64
  1645 +msgid ""
  1646 +"The issuer certificate of a looked up certificate could not be found. This "
  1647 +"normally means the list of trusted certificates is not complete."
  1648 +msgstr ""
  1649 +
  1650 +#: src/core/properties/string.c:189
  1651 +msgid "The log file name"
  1652 +msgstr ""
  1653 +
  1654 +#: src/core/properties/unsigned.c:100
  1655 +msgid "The model number"
  1656 +msgstr ""
  1657 +
  1658 +#: src/core/properties/string.c:62
  1659 +msgid "The name of the LU associated with the session"
  1660 +msgstr ""
  1661 +
  1662 +#: src/core/connect.c:170
  1663 +msgid ""
  1664 +"The network module didn't set the TLS/SSL state message, this is not "
  1665 +"supposed to happen and can be a coding error"
  1666 +msgstr ""
  1667 +
  1668 +#: src/core/ctlr.c:214
  1669 +msgid "The oversize height is too small."
  1670 +msgstr ""
  1671 +
  1672 +#: src/core/ctlr.c:177
  1673 +msgid "The oversize values are invalid."
  1674 +msgstr ""
  1675 +
  1676 +#: src/core/ctlr.c:189
  1677 +msgid "The oversize values are too big."
  1678 +msgstr ""
  1679 +
  1680 +#: src/core/ctlr.c:202
  1681 +msgid "The oversize width is too small."
  1682 +msgstr ""
  1683 +
  1684 +#: src/network_modules/openssl/messages.c:254
  1685 +msgid ""
  1686 +"The passed certificate is self signed and the same certificate cannot be "
  1687 +"found in the list of trusted certificates."
  1688 +msgstr ""
  1689 +
  1690 +#: src/network_modules/openssl/messages.c:113
  1691 +msgid ""
  1692 +"The public key in the certificate SubjectPublicKeyInfo could not be read."
  1693 +msgstr ""
  1694 +
  1695 +#: src/core/ft/ft.c:251
  1696 +msgid "The remote file name is invalid."
  1697 +msgstr ""
  1698 +
  1699 +#: src/network_modules/openssl/messages.c:358
  1700 +msgid "The root CA is marked to reject the specified purpose."
  1701 +msgstr ""
  1702 +
  1703 +#: src/network_modules/openssl/messages.c:347
  1704 +msgid "The root CA is not marked as trusted for the specified purpose."
  1705 +msgstr ""
  1706 +
  1707 +#: src/network_modules/openssl/main.c:102
  1708 +#: src/network_modules/openssl/main.c:150
  1709 +msgid "The secure connection has been closed cleanly."
  1710 +msgstr ""
  1711 +
  1712 +#: src/core/properties/string.c:166
  1713 +msgid "The security state"
  1714 +msgstr ""
  1715 +
  1716 +#: src/network_modules/default/main.c:148
  1717 +msgid "The session is not secure"
  1718 +msgstr ""
  1719 +
  1720 +#: src/network_modules/openssl/messages.c:124
  1721 +#: src/network_modules/openssl/messages.c:135
  1722 +msgid "The signature of the certificate is invalid."
  1723 +msgstr ""
  1724 +
  1725 +#: src/network_modules/openssl/messages.c:336
  1726 +msgid "The supplied certificate cannot be used for the specified purpose."
  1727 +msgstr ""
  1728 +
  1729 +#: src/network_modules/tools.c:114 src/network_modules/tools.c:123
  1730 +#, c-format
  1731 +msgid "The system error code was %d"
  1732 +msgstr ""
  1733 +
  1734 +#: src/network_modules/tools.c:83 src/network_modules/tools.c:135
  1735 +#, c-format
  1736 +msgid "The system error code was %d (%s)"
  1737 +msgstr ""
  1738 +
  1739 +#: src/core/windows/connect.c:239
  1740 +#, c-format
  1741 +msgid "The system error was \"%s\""
  1742 +msgstr ""
  1743 +
  1744 +#: src/core/linux/connect.c:222 src/core/linux/connect.c:282
  1745 +#: src/core/windows/connect.c:298 src/core/windows/connect.c:306
  1746 +#: src/core/windows/connect.c:314 src/core/windows/connect.c:324
  1747 +#: src/core/macos/connect.c:222 src/core/macos/connect.c:282
  1748 +#, c-format
  1749 +msgid "The system error was \"%s\" (rc=%d)"
  1750 +msgstr ""
  1751 +
  1752 +#: src/core/windows/connect.c:225 src/core/windows/connect.c:360
  1753 +#: src/core/windows/connect.c:378
  1754 +#, c-format
  1755 +msgid "The system error was %s"
  1756 +msgstr ""
  1757 +
  1758 +#: src/core/util.c:266
  1759 +#, c-format
  1760 +msgid "The system error was '%s' (rc=%d)"
  1761 +msgstr ""
  1762 +
  1763 +#: src/core/properties/string.c:197
  1764 +msgid "The trace file name"
  1765 +msgstr ""
  1766 +
  1767 +#: src/core/ctlr.c:203
  1768 +#, c-format
  1769 +msgid "The width %d is less than model %d columns (%d)"
  1770 +msgstr ""
  1771 +
  1772 +#: src/network_modules/tools.c:67 src/network_modules/tools.c:101
  1773 +#, c-format
  1774 +msgid "The windows error code was %u"
  1775 +msgstr ""
  1776 +
  1777 +#: src/core/ft/ftmessages.c:146
  1778 +msgid "There is not enough space available for data on the host."
  1779 +msgstr ""
  1780 +
  1781 +#: src/core/ft/ftmessages.c:223
  1782 +msgid "This is a host program error."
  1783 +msgstr ""
  1784 +
  1785 +#: src/core/properties/unsigned.c:146
  1786 +msgid "Time for auto-reconnect"
  1787 +msgstr ""
  1788 +
  1789 +#: src/core/windows/connect.c:299
  1790 +msgid "Timeout conneting to host"
  1791 +msgstr ""
  1792 +
  1793 +#: src/core/toggles/table.c:93 src/core/toggles/table.c:94
  1794 +msgid "Trace Data Stream"
  1795 +msgstr ""
  1796 +
  1797 +#: src/core/toggles/table.c:135
  1798 +msgid "Trace Events"
  1799 +msgstr ""
  1800 +
  1801 +#: src/core/toggles/table.c:296
  1802 +msgid "Trace Network"
  1803 +msgstr ""
  1804 +
  1805 +#: src/core/toggles/table.c:308
  1806 +msgid "Trace SSL negotiation"
  1807 +msgstr ""
  1808 +
  1809 +#: src/core/toggles/table.c:124
  1810 +msgid "Trace Screen"
  1811 +msgstr ""
  1812 +
  1813 +#: src/core/toggles/table.c:307
  1814 +msgid "Trace Security"
  1815 +msgstr ""
  1816 +
  1817 +#: src/core/toggles/table.c:136
  1818 +msgid "Trace interface and application events"
  1819 +msgstr ""
  1820 +
  1821 +#: src/core/toggles/table.c:297
  1822 +msgid "Trace network data flow"
  1823 +msgstr ""
  1824 +
  1825 +#: src/core/toggles/table.c:125
  1826 +msgid "Trace screen contents"
  1827 +msgstr ""
  1828 +
  1829 +#: src/core/toggles/table.c:82
  1830 +msgid "Track Cursor"
  1831 +msgstr ""
  1832 +
  1833 +#: src/core/toggles/table.c:83
  1834 +msgid "Track Cursor location"
  1835 +msgstr ""
  1836 +
  1837 +#: src/core/ft/ft_cut.c:360
  1838 +msgid "Transfer cancelled by host"
  1839 +msgstr ""
  1840 +
  1841 +#: src/core/ft/ft_dft.c:213 src/core/ft/ft_dft.c:344 src/core/ft/ft_cut.c:387
  1842 +#: src/core/ft/ft_cut.c:475
  1843 +msgid "Transfer cancelled by user"
  1844 +msgstr ""
  1845 +
  1846 +#: src/core/ft/ft.c:526
  1847 +msgid "Transfer complete"
  1848 +msgstr ""
  1849 +
  1850 +#: src/core/ft/ft.c:530
  1851 +msgid "Transfer failed"
  1852 +msgstr ""
  1853 +
  1854 +#: src/core/ft/ft_cut.c:447
  1855 +msgid "Transmission error"
  1856 +msgstr ""
  1857 +
  1858 +#: src/core/linux/connect.c:166 src/core/windows/connect.c:198
  1859 +#: src/core/macos/connect.c:166
  1860 +msgid "Try again"
  1861 +msgstr ""
  1862 +
  1863 +#: src/core/properties/string.c:74
  1864 +msgid "URL of the current host"
  1865 +msgstr ""
  1866 +
  1867 +#: src/core/ft/ft_dft.c:161
  1868 +msgid "Uknown DFT Open type from host"
  1869 +msgstr ""
  1870 +
  1871 +#: src/network_modules/openssl/messages.c:112
  1872 +msgid "Unable to decode issuer public key"
  1873 +msgstr ""
  1874 +
  1875 +#: src/network_modules/openssl/messages.c:101
  1876 +msgid "Unable to decrypt CRL's signature"
  1877 +msgstr ""
  1878 +
  1879 +#: src/network_modules/openssl/messages.c:90
  1880 +msgid "Unable to decrypt certificate's signature"
  1881 +msgstr ""
  1882 +
  1883 +#: src/network_modules/openssl/messages.c:78
  1884 +msgid "Unable to get certificate CRL."
  1885 +msgstr ""
  1886 +
  1887 +#: src/core/linux/connect.c:201 src/core/windows/connect.c:224
  1888 +#: src/core/macos/connect.c:201
  1889 +msgid "Unable to get connection state."
  1890 +msgstr ""
  1891 +
  1892 +#: src/network_modules/openssl/messages.c:63
  1893 +msgid "Unable to get issuer certificate"
  1894 +msgstr ""
  1895 +
  1896 +#: src/network_modules/openssl/messages.c:280
  1897 +msgid "Unable to get local issuer certificate"
  1898 +msgstr ""
  1899 +
  1900 +#: src/core/session.c:176
  1901 +msgid "Unable to load from file"
  1902 +msgstr ""
  1903 +
  1904 +#: src/network_modules/openssl/start.c:247
  1905 +msgid "Unable to negotiate a secure connection with the host"
  1906 +msgstr ""
  1907 +
  1908 +#: src/core/paste.c:374
  1909 +msgid "Unable to paste text"
  1910 +msgstr ""
  1911 +
  1912 +#: src/core/session.c:164
  1913 +msgid "Unable to print"
  1914 +msgstr ""
  1915 +
  1916 +#: src/core/session.c:170
  1917 +msgid "Unable to save"
  1918 +msgstr ""
  1919 +
  1920 +#: src/core/ft/ft.c:478
  1921 +msgid "Unable to send file-transfer request"
  1922 +msgstr ""
  1923 +
  1924 +#: src/network_modules/openssl/messages.c:291
  1925 +msgid "Unable to verify the first certificate"
  1926 +msgstr ""
  1927 +
  1928 +#: src/core/telnet.c:1761
  1929 +msgid "Unconnected"
  1930 +msgstr ""
  1931 +
  1932 +#: src/core/toggles/table.c:225
  1933 +msgid "Underline"
  1934 +msgstr ""
  1935 +
  1936 +#: src/network_modules/openssl/start.c:268
  1937 +msgid "Unexpected I/O error"
  1938 +msgstr ""
  1939 +
  1940 +#: src/core/paste.c:375
  1941 +msgid "Unexpected error"
  1942 +msgstr ""
  1943 +
  1944 +#: src/network_modules/tools.c:134
  1945 +msgid "Unexpected error writing to network socket"
  1946 +msgstr ""
  1947 +
  1948 +#: src/core/keyboard/kybd.c:269
  1949 +#, c-format
  1950 +msgid "Unexpected type %d in typeahead queue"
  1951 +msgstr ""
  1952 +
  1953 +#: src/core/telnet.c:1774 src/core/telnet.c:1794
  1954 +msgid "Unknown"
  1955 +msgstr ""
  1956 +
  1957 +#: src/core/ctlr.c:626
  1958 +#, c-format
  1959 +msgid "Unknown 3270 Data Stream command: 0x%X"
  1960 +msgstr ""
  1961 +
  1962 +#: src/core/ft/ft_cut.c:368
  1963 +msgid "Unknown FT control code from host"
  1964 +msgstr ""
  1965 +
  1966 +#: src/core/keyboard/kybd.c:1547
  1967 +#, c-format
  1968 +msgid "Unknown PA key %d"
  1969 +msgstr ""
  1970 +
  1971 +#: src/core/keyboard/kybd.c:1560
  1972 +#, c-format
  1973 +msgid "Unknown PF key %d"
  1974 +msgstr ""
  1975 +
  1976 +#: src/core/ft/ft_cut.c:297
  1977 +msgid "Unknown frame type from host"
  1978 +msgstr ""
  1979 +
  1980 +#: src/core/properties/unsigned.c:161
  1981 +msgid "Unlock delay"
  1982 +msgstr ""
  1983 +
  1984 +#: src/core/rpq.c:223
  1985 +msgid "Unsupported RPQ term"
  1986 +msgstr ""
  1987 +
  1988 +#: src/network_modules/openssl/messages.c:335
  1989 +msgid "Unsupported certificate purpose"
  1990 +msgstr ""
  1991 +
  1992 +#: src/core/actions/table.c:143
  1993 +msgid "Up"
  1994 +msgstr ""
  1995 +
  1996 +#: src/core/toggles/table.c:52
  1997 +msgid "Uppercase only"
  1998 +msgstr ""
  1999 +
  2000 +#: src/core/toggles/table.c:245 src/core/toggles/table.c:246
  2001 +msgid "Use +/- for field navigation"
  2002 +msgstr ""
  2003 +
  2004 +#: src/core/toggles/table.c:247
  2005 +msgid "Use the keys +/- from keypad to select editable fields"
  2006 +msgstr ""
  2007 +
  2008 +#: src/core/windows/connect.c:111
  2009 +msgid "WSAStartup failed"
  2010 +msgstr ""
  2011 +
  2012 +#: src/core/ft/ft.c:487
  2013 +msgid "Waiting for GET response"
  2014 +msgstr ""
  2015 +
  2016 +#: src/core/ft/ft.c:489
  2017 +msgid "Waiting for PUT response"
  2018 +msgstr ""
  2019 +
  2020 +#: src/core/telnet.c:727
  2021 +msgid "Warning"
  2022 +msgstr ""
  2023 +
  2024 +#: src/core/windows/util.c:124 src/core/windows/util.c:167
  2025 +#, c-format
  2026 +msgid "Windows error %d"
  2027 +msgstr ""
  2028 +
  2029 +#: src/core/toggles/table.c:103 src/core/toggles/table.c:104
  2030 +msgid "Wrap around"
  2031 +msgstr ""
  2032 +
  2033 +#: src/core/ft/ftmessages.c:74
  2034 +msgid ""
  2035 +"You did not enter the required parameters after a SEND or RECEIVE command."
  2036 +msgstr ""
  2037 +
  2038 +#: src/core/ft/ftmessages.c:195
  2039 +msgid "You did not specify an existing CMS file for RECEIVE."
  2040 +msgstr ""
  2041 +
  2042 +#: src/core/ft/ftmessages.c:95
  2043 +msgid ""
  2044 +"You need 30 KB of main storage (not disk space) on the host for the file "
  2045 +"transfer, in addition to the host requirement."
  2046 +msgstr ""
  2047 +
  2048 +#: src/core/ft/ftmessages.c:174
  2049 +msgid ""
  2050 +"You selected an option that can only be used if SPACE is also specified."
  2051 +msgstr ""
  2052 +
  2053 +#: src/core/ft/ftmessages.c:153
  2054 +msgid ""
  2055 +"You selected an option that is either not recognized, is specified as a "
  2056 +"positional keyword, or has an associated value that is incorrect."
  2057 +msgstr ""
  2058 +
  2059 +#: src/core/ft/ftmessages.c:181
  2060 +msgid ""
  2061 +"You selected an option that is invalid with a host-partitioned data set."
  2062 +msgstr ""
  2063 +
  2064 +#: src/core/ft/ftmessages.c:167
  2065 +msgid ""
  2066 +"You selected an option that is not valid with APPEND, but otherwise may be "
  2067 +"used."
  2068 +msgstr ""
  2069 +
  2070 +#: src/core/ft/ftmessages.c:160
  2071 +msgid ""
  2072 +"You selected an option that is not valid with RECEIVE, but can be used with "
  2073 +"SEND."
  2074 +msgstr ""
  2075 +
  2076 +#: src/core/ft/ftmessages.c:202
  2077 +msgid ""
  2078 +"You specified a CMS file mode for the SEND key that does not allow write "
  2079 +"access."
  2080 +msgstr ""
  2081 +
  2082 +#: src/core/ft/ftmessages.c:209
  2083 +msgid "You specified a CMS file mode that is not in the CMS search order."
  2084 +msgstr ""
  2085 +
  2086 +#: src/core/ft/ftmessages.c:139
  2087 +msgid "You specified an option that is invalid."
  2088 +msgstr ""
  2089 +
  2090 +#: src/core/actions/table.c:126
  2091 +msgid "_Disconnect"
  2092 +msgstr ""
  2093 +
  2094 +#: src/core/actions/table.c:112
  2095 +msgid "_Reconnect"
  2096 +msgstr ""
  2097 +
  2098 +#: src/core/linux/connect.c:233 src/core/linux/connect.c:302
  2099 +#: src/core/windows/connect.c:340 src/core/macos/connect.c:233
  2100 +#: src/core/macos/connect.c:302
  2101 +msgid "_Retry"
  2102 +msgstr ""
  2103 +
  2104 +#: src/core/toggles/init.c:83 src/core/linux/connect.c:334
  2105 +#: src/core/windows/connect.c:372 src/core/macos/connect.c:334
  2106 +msgid "disable"
  2107 +msgstr ""
  2108 +
  2109 +#: src/core/toggles/init.c:83 src/core/linux/connect.c:334
  2110 +#: src/core/windows/connect.c:372 src/core/macos/connect.c:334
  2111 +msgid "enable"
  2112 +msgstr ""
  2113 +
  2114 +#: src/network_modules/tools.c:174
  2115 +msgid "fcntl() error when getting socket state."
  2116 +msgstr ""
  2117 +
  2118 +#: src/network_modules/tools.c:161
  2119 +msgid "ioctlsocket(FIONBIO) failed."
  2120 +msgstr ""
  2121 +
  2122 +#: src/core/properties/string.c:134
  2123 +msgid "lib3270 revision"
  2124 +msgstr ""
  2125 +
  2126 +#: src/core/properties/string.c:127
  2127 +msgid "lib3270 version"
  2128 +msgstr ""
  2129 +
  2130 +#: src/core/properties/boolean.c:191
  2131 +msgid "numeric lock"
  2132 +msgstr ""
  2133 +
  2134 +#: src/core/linux/connect.c:322 src/core/windows/connect.c:359
  2135 +#: src/core/macos/connect.c:322
  2136 +msgid "setsockopt(SO_OOBINLINE) has failed"
  2137 +msgstr ""
locale/pt_BR.po
1 # 1 #
2 -# Perry Werneck <perry.werneck@gmail.com>, 2012, 2013, 2014, 2016, 2017, 2018, 2019, 2020, 2021. 2 +# Perry Werneck <perry.werneck@gmail.com>, 2012-2023.
3 # 3 #
4 msgid "" 4 msgid ""
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-03-28 21:15-0300\n" 8 "POT-Creation-Date: 2023-03-28 21:15-0300\n"
9 -"PO-Revision-Date: 2021-09-01 23:53-0300\n" 9 +"PO-Revision-Date: 2023-04-21 08:40-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: Português <perry.werneck@gmail.com>\n" 11 +"Language-Team: Brazilian Portuguese <perry.werneck@gmail.com>\n"
12 "Language: pt_BR\n" 12 "Language: pt_BR\n"
13 "MIME-Version: 1.0\n" 13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n" 14 "Content-Type: text/plain; charset=UTF-8\n"
@@ -16,8 +16,8 @@ msgstr &quot;&quot; @@ -16,8 +16,8 @@ msgstr &quot;&quot;
16 "X-Poedit-Language: Portuguese\n" 16 "X-Poedit-Language: Portuguese\n"
17 "X-Poedit-Country: BRAZIL\n" 17 "X-Poedit-Country: BRAZIL\n"
18 "X-Poedit-SourceCharset: utf-8\n" 18 "X-Poedit-SourceCharset: utf-8\n"
19 -"Plural-Forms: nplurals=2; plural=(n > 1);\n"  
20 -"X-Generator: Gtranslator 2.91.7\n" 19 +"Plural-Forms: nplurals=2; plural=(n > 1)\n"
  20 +"X-Generator: Gtranslator 40.0\n"
21 21
22 #: src/core/ctlr.c:178 22 #: src/core/ctlr.c:178
23 #, c-format 23 #, c-format
@@ -287,9 +287,9 @@ msgid &quot;Can&#39;t load \&quot;%s\&quot;: %s&quot; @@ -287,9 +287,9 @@ msgid &quot;Can&#39;t load \&quot;%s\&quot;: %s&quot;
287 msgstr "Não foi possível carregar \"%s\": %s" 287 msgstr "Não foi possível carregar \"%s\": %s"
288 288
289 #: src/network_modules/openssl/context.c:295 289 #: src/network_modules/openssl/context.c:295
290 -#, fuzzy, c-format 290 +#, c-format
291 msgid "Can't open \"%s\" (The Windows error code was %ld)" 291 msgid "Can't open \"%s\" (The Windows error code was %ld)"
292 -msgstr "Não foi possível abrir \"%s\" (O código de erro windows foi %ld)\n" 292 +msgstr "Não foi possível abrir \"%s\" (O código de erro windows foi %ld)"
293 293
294 #: src/network_modules/openssl/context.c:308 294 #: src/network_modules/openssl/context.c:308
295 #, c-format 295 #, c-format
@@ -2181,7 +2181,7 @@ msgstr &quot;erro fcntl() ao obter estado do socket.&quot; @@ -2181,7 +2181,7 @@ msgstr &quot;erro fcntl() ao obter estado do socket.&quot;
2181 2181
2182 #: src/network_modules/tools.c:161 2182 #: src/network_modules/tools.c:161
2183 msgid "ioctlsocket(FIONBIO) failed." 2183 msgid "ioctlsocket(FIONBIO) failed."
2184 -msgstr "ioctlsocket(FIONBIO) failed." 2184 +msgstr "ioctlsocket(FIONBIO) falhou."
2185 2185
2186 #: src/core/properties/string.c:134 2186 #: src/core/properties/string.c:134
2187 msgid "lib3270 revision" 2187 msgid "lib3270 revision"
@@ -2197,7 +2197,7 @@ msgstr &quot;numeric lock&quot; @@ -2197,7 +2197,7 @@ msgstr &quot;numeric lock&quot;
2197 2197
2198 #: src/core/windows/connect.c:359 2198 #: src/core/windows/connect.c:359
2199 msgid "setsockopt(SO_OOBINLINE) has failed" 2199 msgid "setsockopt(SO_OOBINLINE) has failed"
2200 -msgstr "setsockopt(SO_OOBINLINE) has failed" 2200 +msgstr "setsockopt(SO_OOBINLINE) falhou"
2201 2201
2202 #~ msgid " and <b>%s</b> for %s." 2202 #~ msgid " and <b>%s</b> for %s."
2203 #~ msgstr " e <b>%s</b> para %s." 2203 #~ msgstr " e <b>%s</b> para %s."
src/core/windows/util.c
@@ -317,7 +317,7 @@ char * lib3270_build_data_filename(const char *str, ...) { @@ -317,7 +317,7 @@ char * lib3270_build_data_filename(const char *str, ...) {
317 } 317 }
318 } 318 }
319 319
320 - if( *(instpath+strlen(instpath)-1) = '\') { 320 + if( *(instpath+strlen(instpath)-1) == '\') {
321 instpath[strlen(instpath)-1] = 0; 321 instpath[strlen(instpath)-1] = 0;
322 } 322 }
323 323
src/include/config.h.in
@@ -70,7 +70,6 @@ @@ -70,7 +70,6 @@
70 /* Security options */ 70 /* Security options */
71 #undef HAVE_LDAP 71 #undef HAVE_LDAP
72 #undef HAVE_LIBSSL 72 #undef HAVE_LIBSSL
73 - #undef HAVE_FIPS_H  
74 73
75 #undef SSL_ENABLE_SELF_SIGNED_CERT_CHECK 74 #undef SSL_ENABLE_SELF_SIGNED_CERT_CHECK
76 75
src/network_modules/openssl/context.c
@@ -46,10 +46,6 @@ @@ -46,10 +46,6 @@
46 #include <openssl/err.h> 46 #include <openssl/err.h>
47 #include <openssl/x509_vfy.h> 47 #include <openssl/x509_vfy.h>
48 48
49 -#ifdef HAVE_FIPS_H  
50 - #include <openssl/fips.h>  
51 -#endif // HAVE_FIPS_H  
52 -  
53 #ifndef SSL_ST_OK 49 #ifndef SSL_ST_OK
54 #define SSL_ST_OK 3 50 #define SSL_ST_OK 3
55 #endif // !SSL_ST_OK 51 #endif // !SSL_ST_OK
src/testprogram/testprogram.c
@@ -43,10 +43,6 @@ @@ -43,10 +43,6 @@
43 #include <lib3270/charset.h> 43 #include <lib3270/charset.h>
44 #include <stdio.h> 44 #include <stdio.h>
45 45
46 -#ifdef HAVE_FIPS_H  
47 - #include <openssl/fips.h>  
48 -#endif // HAVE_FIPS_H  
49 -  
50 #ifdef _WIN32 46 #ifdef _WIN32
51 #include <lib3270/win32.h> 47 #include <lib3270/win32.h>
52 #endif // _WIN32 48 #endif // _WIN32
@@ -80,11 +76,13 @@ int main(int argc, char *argv[]) { @@ -80,11 +76,13 @@ int main(int argc, char *argv[]) {
80 76
81 textdomain("lib3270"); 77 textdomain("lib3270");
82 78
  79 + /*
83 { 80 {
84 lib3270_autoptr(char) testfilename = lib3270_build_data_filename("test",NULL); 81 lib3270_autoptr(char) testfilename = lib3270_build_data_filename("test",NULL);
85 printf("\n\nFilename: '%s'\n\n", testfilename); 82 printf("\n\nFilename: '%s'\n\n", testfilename);
86 return 0; 83 return 0;
87 } 84 }
  85 + */
88 86
89 // #pragma GCC diagnostic push 87 // #pragma GCC diagnostic push
90 // #pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant" 88 // #pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant"