Commit 1be1fa42cbffece3139b4c18f0eaf19afad4f152
1 parent
1b79368e
Exists in
master
and in
2 other branches
Adding ui model for macos.
Showing
1 changed file
with
1126 additions
and
0 deletions
Show diff stats
| ... | ... | @@ -0,0 +1,1126 @@ |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<!-- | |
| 3 | + | |
| 4 | + Software pw3270, desenvolvido com base nos códigos fontes do WC3270 e X3270 | |
| 5 | + (Paul Mattes Paul.Mattes@usa.net), de emulação de terminal 3270 para acesso a | |
| 6 | + aplicativos mainframe. Registro no INPI sob o nome G3270. | |
| 7 | + | |
| 8 | + Copyright (C) <2008> <Banco do Brasil S.A.> | |
| 9 | + | |
| 10 | + Este programa é software livre. Você pode redistribuí-lo e/ou modificá-lo sob | |
| 11 | + os termos da GPL v.2 - Licença Pública Geral GNU, conforme publicado pela | |
| 12 | + Free Software Foundation. | |
| 13 | + | |
| 14 | + Este programa é distribuído na expectativa de ser útil, mas SEM QUALQUER | |
| 15 | + GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou de ADEQUAÇÃO | |
| 16 | + A QUALQUER PROPÓSITO EM PARTICULAR. Consulte a Licença Pública Geral GNU para | |
| 17 | + obter mais detalhes. | |
| 18 | + | |
| 19 | + Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este | |
| 20 | + programa; se não, escreva para a Free Software Foundation, Inc., 51 Franklin | |
| 21 | + St, Fifth Floor, Boston, MA 02110-1301 USA | |
| 22 | + | |
| 23 | + | |
| 24 | + Contatos: | |
| 25 | + | |
| 26 | + perry.werneck@gmail.com (Alexandre Perry de Souza Werneck) | |
| 27 | + erico.mendonca@gmail.com (Erico Mascarenhas Mendonça) | |
| 28 | + | |
| 29 | +--> | |
| 30 | +<interface> | |
| 31 | + <requires lib="gtk+" version="3.0"/> | |
| 32 | + | |
| 33 | + <menu id="app-menu"> | |
| 34 | + | |
| 35 | + <submenu id="help-menu-placeholder"> | |
| 36 | + | |
| 37 | + <attribute name='label' translatable='yes'>Help</attribute> | |
| 38 | + | |
| 39 | + <item> | |
| 40 | + <attribute name="label" translatable="yes">About PW3270</attribute> | |
| 41 | + <attribute name="action">app.about</attribute> | |
| 42 | + </item> | |
| 43 | + | |
| 44 | + </submenu> | |
| 45 | + | |
| 46 | + <submenu> | |
| 47 | + | |
| 48 | + <attribute name='label' translatable='yes'>Session</attribute> | |
| 49 | + | |
| 50 | + <item> | |
| 51 | + <attribute name="label" translatable="yes">Open in New Window</attribute> | |
| 52 | + <attribute name="action">app.open.session.window</attribute> | |
| 53 | + </item> | |
| 54 | + | |
| 55 | + <item> | |
| 56 | + <attribute name="label" translatable="yes">Open in New Tab</attribute> | |
| 57 | + <attribute name="action">app.open.session.tab</attribute> | |
| 58 | + </item> | |
| 59 | + | |
| 60 | + </submenu> | |
| 61 | + | |
| 62 | + <submenu id="view-menu-placeholder"> | |
| 63 | + | |
| 64 | + <attribute name='label' translatable='yes'>View</attribute> | |
| 65 | + | |
| 66 | + <item> | |
| 67 | + <attribute name="label" translatable="yes">Main Toolbar</attribute> | |
| 68 | + <attribute name="action">win.toolbar</attribute> | |
| 69 | + </item> | |
| 70 | + | |
| 71 | + <item> | |
| 72 | + <attribute name="label" translatable="yes">Main Menu</attribute> | |
| 73 | + <attribute name="action">win.menubar</attribute> | |
| 74 | + </item> | |
| 75 | + | |
| 76 | + <item> | |
| 77 | + <attribute name="label" translatable="yes">Session Trace</attribute> | |
| 78 | + <attribute name="action">win.trace</attribute> | |
| 79 | + </item> | |
| 80 | + | |
| 81 | + </submenu> | |
| 82 | + | |
| 83 | + <item> | |
| 84 | + <attribute name="label" translatable="yes">Application preferences</attribute> | |
| 85 | + <attribute name="action">app.preferences</attribute> | |
| 86 | + </item> | |
| 87 | + | |
| 88 | + <item> | |
| 89 | + <attribute name="label" translatable="yes">Quit</attribute> | |
| 90 | + <attribute name="action">app.quit</attribute> | |
| 91 | + </item> | |
| 92 | + | |
| 93 | + </menu> | |
| 94 | + | |
| 95 | + <menu id='menubar'> | |
| 96 | + | |
| 97 | + <submenu> | |
| 98 | + | |
| 99 | + <attribute name='label' translatable='yes'>_File</attribute> | |
| 100 | + | |
| 101 | + <submenu> | |
| 102 | + | |
| 103 | + <attribute name='label' translatable='yes'>_New</attribute> | |
| 104 | + | |
| 105 | + <item> | |
| 106 | + <attribute name="label" translatable="yes">Window with default session</attribute> | |
| 107 | + <attribute name="action">app.window.new</attribute> | |
| 108 | + </item> | |
| 109 | + | |
| 110 | + <item> | |
| 111 | + <attribute name="label" translatable="yes">Tab with default session</attribute> | |
| 112 | + <attribute name="action">app.new.tab</attribute> | |
| 113 | + </item> | |
| 114 | + | |
| 115 | + </submenu> | |
| 116 | + | |
| 117 | + <submenu> | |
| 118 | + | |
| 119 | + <attribute name='label' translatable='yes'>_Open</attribute> | |
| 120 | + | |
| 121 | + <item> | |
| 122 | + <attribute name="label" translatable="yes">Session in new window</attribute> | |
| 123 | + <attribute name="action">app.open.session.window</attribute> | |
| 124 | + </item> | |
| 125 | + | |
| 126 | + <item> | |
| 127 | + <attribute name="label" translatable="yes">Session in New Tab</attribute> | |
| 128 | + <attribute name="action">app.open.session.tab</attribute> | |
| 129 | + </item> | |
| 130 | + | |
| 131 | + </submenu> | |
| 132 | + | |
| 133 | + <submenu> | |
| 134 | + | |
| 135 | + <attribute name='label' translatable='yes'>Save</attribute> | |
| 136 | + | |
| 137 | + <section> | |
| 138 | + | |
| 139 | + <item> | |
| 140 | + <attribute name="label" translatable="yes">Current screen</attribute> | |
| 141 | + <attribute name="action">win.save-all</attribute> | |
| 142 | + </item> | |
| 143 | + | |
| 144 | + <item> | |
| 145 | + <attribute name="label" translatable="yes">Selected area</attribute> | |
| 146 | + <attribute name="action">win.save-selected</attribute> | |
| 147 | + </item> | |
| 148 | + | |
| 149 | + <item> | |
| 150 | + <attribute name="label" translatable="yes">Clipboard contents</attribute> | |
| 151 | + <attribute name="action">win.save-copy</attribute> | |
| 152 | + </item> | |
| 153 | + | |
| 154 | + </section> | |
| 155 | + | |
| 156 | + <section> | |
| 157 | + | |
| 158 | + <item> | |
| 159 | + <attribute name="label" translatable="yes">Shortcut for this session</attribute> | |
| 160 | + <attribute name="action">win.save.launcher</attribute> | |
| 161 | + </item> | |
| 162 | + | |
| 163 | + <item> | |
| 164 | + <attribute name="label" translatable="yes">Session preferences</attribute> | |
| 165 | + <attribute name="action">win.save.session.preferences</attribute> | |
| 166 | + </item> | |
| 167 | + | |
| 168 | + </section> | |
| 169 | + | |
| 170 | + </submenu> | |
| 171 | + | |
| 172 | + <submenu> | |
| 173 | + | |
| 174 | + <attribute name='label' translatable='yes'>Print</attribute> | |
| 175 | + | |
| 176 | + <item> | |
| 177 | + <attribute name="label" translatable="yes">Current Screen</attribute> | |
| 178 | + <attribute name="action">win.print-all</attribute> | |
| 179 | + </item> | |
| 180 | + | |
| 181 | + <item> | |
| 182 | + <attribute name="label" translatable="yes">Selected area</attribute> | |
| 183 | + <attribute name="action">win.print-selected</attribute> | |
| 184 | + </item> | |
| 185 | + | |
| 186 | + <item> | |
| 187 | + <attribute name="label" translatable="yes">Clipboard contents</attribute> | |
| 188 | + <attribute name="action">win.print-copy</attribute> | |
| 189 | + </item> | |
| 190 | + | |
| 191 | + </submenu> | |
| 192 | + | |
| 193 | + <section> | |
| 194 | + | |
| 195 | + <item> | |
| 196 | + <attribute name="label" translatable="yes">Send/Receive files</attribute> | |
| 197 | + <attribute name="action">win.file.transfer</attribute> | |
| 198 | + </item> | |
| 199 | + | |
| 200 | + <!-- submenu> | |
| 201 | + | |
| 202 | + <attribute name='label' translatable='yes'>Preferences</attribute> | |
| 203 | + | |
| 204 | + <item> | |
| 205 | + <attribute name="label" translatable="yes">Application</attribute> | |
| 206 | + <attribute name="action">app.preferences</attribute> | |
| 207 | + </item> | |
| 208 | + | |
| 209 | + <item> | |
| 210 | + <attribute name="label" translatable="yes">Current session</attribute> | |
| 211 | + <attribute name="action">win.session.properties</attribute> | |
| 212 | + </item> | |
| 213 | + | |
| 214 | + </submenu --> | |
| 215 | + | |
| 216 | + <item> | |
| 217 | + <attribute name="label" translatable="yes">Close window</attribute> | |
| 218 | + <attribute name="action">win.close</attribute> | |
| 219 | + </item> | |
| 220 | + | |
| 221 | + <!-- item> | |
| 222 | + <attribute name="label" translatable="yes">Quit application</attribute> | |
| 223 | + <attribute name="action">app.quit</attribute> | |
| 224 | + </item --> | |
| 225 | + | |
| 226 | + </section> | |
| 227 | + | |
| 228 | + </submenu> | |
| 229 | + | |
| 230 | + <submenu> | |
| 231 | + | |
| 232 | + <attribute name='label' translatable='yes'>_Edit</attribute> | |
| 233 | + | |
| 234 | + <section> | |
| 235 | + | |
| 236 | + <item> | |
| 237 | + <attribute name="label" translatable="yes">Copy</attribute> | |
| 238 | + <attribute name="action">win.copy</attribute> | |
| 239 | + </item> | |
| 240 | + | |
| 241 | + <item> | |
| 242 | + <attribute name="label" translatable="yes">Copy as text</attribute> | |
| 243 | + <attribute name="action">win.copy-text</attribute> | |
| 244 | + </item> | |
| 245 | + | |
| 246 | + <item> | |
| 247 | + <attribute name="label" translatable="yes">Copy as table</attribute> | |
| 248 | + <attribute name="action">win.copy-table</attribute> | |
| 249 | + </item> | |
| 250 | + | |
| 251 | + <item> | |
| 252 | + <attribute name="label" translatable="yes">Append to copy</attribute> | |
| 253 | + <attribute name="action">win.copy-append</attribute> | |
| 254 | + </item> | |
| 255 | + | |
| 256 | + <item> | |
| 257 | + <attribute name="label" translatable="yes">Cut</attribute> | |
| 258 | + <attribute name="action">win.cut</attribute> | |
| 259 | + </item> | |
| 260 | + | |
| 261 | + <item> | |
| 262 | + <attribute name="label" translatable="yes">Paste from clipboard</attribute> | |
| 263 | + <attribute name="action">win.paste</attribute> | |
| 264 | + </item> | |
| 265 | + | |
| 266 | + <item> | |
| 267 | + <attribute name="label" translatable="yes">Paste next</attribute> | |
| 268 | + <attribute name="action">win.paste-next</attribute> | |
| 269 | + </item> | |
| 270 | + | |
| 271 | + <item> | |
| 272 | + <attribute name="label" translatable="yes">Paste from text file</attribute> | |
| 273 | + <attribute name="action">win.paste-file</attribute> | |
| 274 | + </item> | |
| 275 | + | |
| 276 | + </section> | |
| 277 | + | |
| 278 | + <section> | |
| 279 | + | |
| 280 | + <item> | |
| 281 | + <attribute name="label" translatable="yes">Select all</attribute> | |
| 282 | + <attribute name="action">win.select-all</attribute> | |
| 283 | + </item> | |
| 284 | + | |
| 285 | + <item> | |
| 286 | + <attribute name="label" translatable="yes">Select Field</attribute> | |
| 287 | + <attribute name="action">win.select-field</attribute> | |
| 288 | + </item> | |
| 289 | + | |
| 290 | + <item> | |
| 291 | + <attribute name="label" translatable="yes">Unselect</attribute> | |
| 292 | + <attribute name="action">win.unselect</attribute> | |
| 293 | + </item> | |
| 294 | + | |
| 295 | + <item> | |
| 296 | + <attribute name="label" translatable="yes">Reselect</attribute> | |
| 297 | + <attribute name="action">win.reselect</attribute> | |
| 298 | + </item> | |
| 299 | + | |
| 300 | + </section> | |
| 301 | + | |
| 302 | + <section> | |
| 303 | + | |
| 304 | + <item> | |
| 305 | + <attribute name="label" translatable="yes">Clear</attribute> | |
| 306 | + <attribute name="action">win.clear</attribute> | |
| 307 | + </item> | |
| 308 | + | |
| 309 | + <item> | |
| 310 | + <attribute name="label" translatable="yes">Erase input</attribute> | |
| 311 | + <attribute name="action">win.erase-input</attribute> | |
| 312 | + </item> | |
| 313 | + | |
| 314 | + <item> | |
| 315 | + <attribute name="label" translatable="yes">Delete Field</attribute> | |
| 316 | + <attribute name="action">win.delete-field</attribute> | |
| 317 | + </item> | |
| 318 | + | |
| 319 | + <item> | |
| 320 | + <attribute name="label" translatable="yes">Erase to end of field</attribute> | |
| 321 | + <attribute name="action">win.erase-eof</attribute> | |
| 322 | + </item> | |
| 323 | + | |
| 324 | + <item> | |
| 325 | + <attribute name="label" translatable="yes">Erase to end of line</attribute> | |
| 326 | + <attribute name="action">win.erase-eol</attribute> | |
| 327 | + </item> | |
| 328 | + | |
| 329 | + </section> | |
| 330 | + | |
| 331 | + </submenu> | |
| 332 | + | |
| 333 | + <submenu id="view-menu-placeholder"> | |
| 334 | + | |
| 335 | + <attribute name='label' translatable='yes'>_View</attribute> | |
| 336 | + | |
| 337 | + <item> | |
| 338 | + <attribute name="label" translatable="yes">Trace</attribute> | |
| 339 | + <attribute name="action">win.trace</attribute> | |
| 340 | + </item> | |
| 341 | + | |
| 342 | + <item> | |
| 343 | + <attribute name="label" translatable="yes">Toolbar</attribute> | |
| 344 | + <attribute name="action">win.toolbar</attribute> | |
| 345 | + </item> | |
| 346 | + | |
| 347 | + <item> | |
| 348 | + <attribute name="label" translatable="yes">Menu</attribute> | |
| 349 | + <attribute name="action">win.menubar</attribute> | |
| 350 | + </item> | |
| 351 | + | |
| 352 | + <item> | |
| 353 | + <attribute name="label" translatable="yes">Field attributes</attribute> | |
| 354 | + <attribute name="action">win.fieldattr</attribute> | |
| 355 | + </item> | |
| 356 | + | |
| 357 | + </submenu> | |
| 358 | + | |
| 359 | + <submenu> | |
| 360 | + | |
| 361 | + <attribute name='label' translatable='yes'>_Network</attribute> | |
| 362 | + | |
| 363 | + <!-- item> | |
| 364 | + <attribute name="label" translatable="yes">Host properties</attribute> | |
| 365 | + <attribute name="action">win.host.properties</attribute> | |
| 366 | + </item --> | |
| 367 | + | |
| 368 | + <item> | |
| 369 | + <attribute name="label" translatable="yes">_Connect</attribute> | |
| 370 | + <attribute name="action">win.connect</attribute> | |
| 371 | + </item> | |
| 372 | + | |
| 373 | + <item> | |
| 374 | + <attribute name="label" translatable="yes">_Disconnect</attribute> | |
| 375 | + <attribute name="action">win.disconnect</attribute> | |
| 376 | + </item> | |
| 377 | + | |
| 378 | + </submenu> | |
| 379 | + | |
| 380 | + <submenu> | |
| 381 | + | |
| 382 | + <attribute name='label' translatable='yes'>Settings</attribute> | |
| 383 | + | |
| 384 | + <item> | |
| 385 | + <attribute name="label" translatable="yes">Application</attribute> | |
| 386 | + <attribute name="action">app.preferences</attribute> | |
| 387 | + </item> | |
| 388 | + | |
| 389 | + <item> | |
| 390 | + <attribute name="label" translatable="yes">Host and Emulation settings</attribute> | |
| 391 | + <attribute name="action">win.dialog-host</attribute> | |
| 392 | + </item> | |
| 393 | + | |
| 394 | + <item> | |
| 395 | + <attribute name="label" translatable="yes">Keyboard accelerators</attribute> | |
| 396 | + <attribute name="action">win.dialog-keyboard</attribute> | |
| 397 | + </item> | |
| 398 | + | |
| 399 | + <item> | |
| 400 | + <attribute name="label" translatable="yes">Clipboard</attribute> | |
| 401 | + <attribute name="action">win.dialog-clipboard</attribute> | |
| 402 | + </item> | |
| 403 | + | |
| 404 | + <item> | |
| 405 | + <attribute name="label" translatable="yes">Terminal colors</attribute> | |
| 406 | + <attribute name="action">win.dialog-colors</attribute> | |
| 407 | + </item> | |
| 408 | + | |
| 409 | + <!-- item> | |
| 410 | + <attribute name="label" translatable="yes">Current session</attribute> | |
| 411 | + <attribute name="action">win.session.properties</attribute> | |
| 412 | + </item --> | |
| 413 | + | |
| 414 | + <submenu> | |
| 415 | + | |
| 416 | + <attribute name="label" translatable="yes">Screen size</attribute> | |
| 417 | + | |
| 418 | + <item> | |
| 419 | + <attribute name="label" translatable="yes">Model 2 - 80x24</attribute> | |
| 420 | + <attribute name="action">win.model-number</attribute> | |
| 421 | + <attribute name="target">2</attribute> | |
| 422 | + </item> | |
| 423 | + <item> | |
| 424 | + <attribute name="label" translatable="yes">Model 3 - 80x32</attribute> | |
| 425 | + <attribute name="action">win.model-number</attribute> | |
| 426 | + <attribute name="target">3</attribute> | |
| 427 | + </item> | |
| 428 | + <item> | |
| 429 | + <attribute name="label" translatable="yes">Model 4 - 80x43</attribute> | |
| 430 | + <attribute name="action">win.model-number</attribute> | |
| 431 | + <attribute name="target">4</attribute> | |
| 432 | + </item> | |
| 433 | + <item> | |
| 434 | + <attribute name="label" translatable="yes">Model 5 - 132x27</attribute> | |
| 435 | + <attribute name="action">win.model-number</attribute> | |
| 436 | + <attribute name="target">5</attribute> | |
| 437 | + </item> | |
| 438 | + | |
| 439 | + </submenu> | |
| 440 | + | |
| 441 | + <submenu id='font-select-placeholder'> | |
| 442 | + <attribute name="label" translatable="yes">Terminal font</attribute> | |
| 443 | + </submenu> | |
| 444 | + | |
| 445 | + <submenu> | |
| 446 | + | |
| 447 | + <attribute name='label' translatable='yes'>Options</attribute> | |
| 448 | + | |
| 449 | + <item> | |
| 450 | + <attribute name="label" translatable="yes">Connect on startup</attribute> | |
| 451 | + <attribute name="action">win.autoconnect</attribute> | |
| 452 | + </item> | |
| 453 | + | |
| 454 | + <item> | |
| 455 | + <attribute name="label" translatable="yes">Blinking Cursor</attribute> | |
| 456 | + <attribute name="action">win.cursorblink</attribute> | |
| 457 | + </item> | |
| 458 | + | |
| 459 | + <item> | |
| 460 | + <attribute name="label" translatable="yes">Monocase</attribute> | |
| 461 | + <attribute name="action">win.monocase</attribute> | |
| 462 | + </item> | |
| 463 | + | |
| 464 | + <item> | |
| 465 | + <attribute name="label" translatable="yes">Track Cursor</attribute> | |
| 466 | + <attribute name="action">win.cursorpos</attribute> | |
| 467 | + </item> | |
| 468 | + | |
| 469 | + <item> | |
| 470 | + <attribute name="label" translatable="yes">Full Screen</attribute> | |
| 471 | + <attribute name="action">win.fullscreen</attribute> | |
| 472 | + </item> | |
| 473 | + | |
| 474 | + <item> | |
| 475 | + <attribute name="label" translatable="yes">Cross hair cursor</attribute> | |
| 476 | + <attribute name="action">win.crosshair</attribute> | |
| 477 | + </item> | |
| 478 | + | |
| 479 | + <item> | |
| 480 | + <attribute name="label" translatable="yes">Resize on alternate screen</attribute> | |
| 481 | + <attribute name="action">win.altscreen</attribute> | |
| 482 | + </item> | |
| 483 | + | |
| 484 | + <item> | |
| 485 | + <attribute name="label" translatable="yes">Paste with left margin</attribute> | |
| 486 | + <attribute name="action">win.marginedpaste</attribute> | |
| 487 | + </item> | |
| 488 | + | |
| 489 | + <item> | |
| 490 | + <attribute name="label" translatable="yes">Blank Fill</attribute> | |
| 491 | + <attribute name="action">win.blankfill</attribute> | |
| 492 | + </item> | |
| 493 | + | |
| 494 | + <item> | |
| 495 | + <attribute name="label" translatable="yes">Select by rectangles</attribute> | |
| 496 | + <attribute name="action">win.rectselect</attribute> | |
| 497 | + </item> | |
| 498 | + | |
| 499 | + <item> | |
| 500 | + <attribute name="label" translatable="yes">Auto-Reconnect</attribute> | |
| 501 | + <attribute name="action">win.autoreconnect</attribute> | |
| 502 | + </item> | |
| 503 | + | |
| 504 | + <item> | |
| 505 | + <attribute name="label" translatable="yes">Bold</attribute> | |
| 506 | + <attribute name="action">win.bold</attribute> | |
| 507 | + </item> | |
| 508 | + | |
| 509 | + <item> | |
| 510 | + <attribute name="label" translatable="yes">Show Underline</attribute> | |
| 511 | + <attribute name="action">win.underline</attribute> | |
| 512 | + </item> | |
| 513 | + | |
| 514 | + <item> | |
| 515 | + <attribute name="label" translatable="yes">Keep selected</attribute> | |
| 516 | + <attribute name="action">win.keepselected</attribute> | |
| 517 | + </item> | |
| 518 | + | |
| 519 | + <item> | |
| 520 | + <attribute name="label" translatable="yes">Smart paste</attribute> | |
| 521 | + <attribute name="action">win.smartpaste</attribute> | |
| 522 | + </item> | |
| 523 | + | |
| 524 | + <item> | |
| 525 | + <attribute name="label" translatable="yes">Alert sound</attribute> | |
| 526 | + <attribute name="action">win.beep</attribute> | |
| 527 | + </item> | |
| 528 | + | |
| 529 | + <item> | |
| 530 | + <attribute name="label" translatable="yes">Use +/- for field navigation</attribute> | |
| 531 | + <attribute name="action">win.kpalternative</attribute> | |
| 532 | + </item> | |
| 533 | + | |
| 534 | + <item> | |
| 535 | + <attribute name="label" translatable="yes">Network keep alive</attribute> | |
| 536 | + <attribute name="action">win.keepalive</attribute> | |
| 537 | + </item> | |
| 538 | + | |
| 539 | + <item> | |
| 540 | + <attribute name="label" translatable="yes">Dynamic font spacing</attribute> | |
| 541 | + <attribute name="action">win.dynamic-font-spacing</attribute> | |
| 542 | + </item> | |
| 543 | + | |
| 544 | + </submenu> | |
| 545 | + | |
| 546 | + </submenu> | |
| 547 | + | |
| 548 | + <submenu id="help-menu-placeholder"> | |
| 549 | + | |
| 550 | + <attribute name='label' translatable='yes'>Help</attribute> | |
| 551 | + | |
| 552 | + <item> | |
| 553 | + <attribute name="label" translatable="yes">About PW3270</attribute> | |
| 554 | + <attribute name="action">app.about</attribute> | |
| 555 | + </item> | |
| 556 | + | |
| 557 | + </submenu> | |
| 558 | + | |
| 559 | + </menu> | |
| 560 | + | |
| 561 | + <menu id="open-menu"> | |
| 562 | + | |
| 563 | + <submenu> | |
| 564 | + | |
| 565 | + <attribute name='label' translatable='yes'>_New</attribute> | |
| 566 | + | |
| 567 | + <item> | |
| 568 | + <attribute name="label" translatable="yes">Window with default session</attribute> | |
| 569 | + <attribute name="action">app.window.new</attribute> | |
| 570 | + </item> | |
| 571 | + | |
| 572 | + <item> | |
| 573 | + <attribute name="label" translatable="yes">Tab with default session</attribute> | |
| 574 | + <attribute name="action">app.new.tab</attribute> | |
| 575 | + </item> | |
| 576 | + | |
| 577 | + </submenu> | |
| 578 | + | |
| 579 | + <submenu> | |
| 580 | + | |
| 581 | + <attribute name='label' translatable='yes'>_Open</attribute> | |
| 582 | + | |
| 583 | + <item> | |
| 584 | + <attribute name="label" translatable="yes">Session</attribute> | |
| 585 | + <attribute name="action">app.open.session</attribute> | |
| 586 | + </item> | |
| 587 | + | |
| 588 | + <item> | |
| 589 | + <attribute name="label" translatable="yes">Session in new window</attribute> | |
| 590 | + <attribute name="action">app.open.session.window</attribute> | |
| 591 | + </item> | |
| 592 | + | |
| 593 | + <item> | |
| 594 | + <attribute name="label" translatable="yes">Session in New Tab</attribute> | |
| 595 | + <attribute name="action">app.open.session.tab</attribute> | |
| 596 | + </item> | |
| 597 | + | |
| 598 | + </submenu> | |
| 599 | + | |
| 600 | + <submenu> | |
| 601 | + | |
| 602 | + <attribute name='label' translatable='yes'>Save</attribute> | |
| 603 | + | |
| 604 | + <section> | |
| 605 | + | |
| 606 | + <item> | |
| 607 | + <attribute name="label" translatable="yes">Current screen</attribute> | |
| 608 | + <attribute name="action">win.save-all</attribute> | |
| 609 | + </item> | |
| 610 | + | |
| 611 | + <item> | |
| 612 | + <attribute name="label" translatable="yes">Selected area</attribute> | |
| 613 | + <attribute name="action">win.save-selected</attribute> | |
| 614 | + </item> | |
| 615 | + | |
| 616 | + <item> | |
| 617 | + <attribute name="label" translatable="yes">Clipboard contents</attribute> | |
| 618 | + <attribute name="action">win.save-copy</attribute> | |
| 619 | + </item> | |
| 620 | + | |
| 621 | + </section> | |
| 622 | + | |
| 623 | + <section> | |
| 624 | + | |
| 625 | + <item> | |
| 626 | + <attribute name="label" translatable="yes">Shortcut for this session</attribute> | |
| 627 | + <attribute name="action">win.save.launcher</attribute> | |
| 628 | + </item> | |
| 629 | + | |
| 630 | + <item> | |
| 631 | + <attribute name="label" translatable="yes">Session preferences</attribute> | |
| 632 | + <attribute name="action">win.save.session.preferences</attribute> | |
| 633 | + </item> | |
| 634 | + | |
| 635 | + </section> | |
| 636 | + | |
| 637 | + </submenu> | |
| 638 | + | |
| 639 | + <submenu> | |
| 640 | + | |
| 641 | + <attribute name='label' translatable='yes'>Print</attribute> | |
| 642 | + | |
| 643 | + <item> | |
| 644 | + <attribute name="label" translatable="yes">Current Screen</attribute> | |
| 645 | + <attribute name="action">win.print-all</attribute> | |
| 646 | + </item> | |
| 647 | + | |
| 648 | + <item> | |
| 649 | + <attribute name="label" translatable="yes">Selected area</attribute> | |
| 650 | + <attribute name="action">win.print-selected</attribute> | |
| 651 | + </item> | |
| 652 | + | |
| 653 | + <item> | |
| 654 | + <attribute name="label" translatable="yes">Clipboard contents</attribute> | |
| 655 | + <attribute name="action">win.print-copy</attribute> | |
| 656 | + </item> | |
| 657 | + | |
| 658 | + </submenu> | |
| 659 | + | |
| 660 | + <submenu id='preferences-menu'> | |
| 661 | + | |
| 662 | + <attribute name='label' translatable='yes'>Preferences</attribute> | |
| 663 | + | |
| 664 | + <item> | |
| 665 | + <attribute name="label" translatable="yes">Application</attribute> | |
| 666 | + <attribute name="action">app.preferences</attribute> | |
| 667 | + </item> | |
| 668 | + | |
| 669 | + <item> | |
| 670 | + <attribute name="label" translatable="yes">Current session</attribute> | |
| 671 | + <attribute name="action">win.session.properties</attribute> | |
| 672 | + </item> | |
| 673 | + | |
| 674 | + </submenu> | |
| 675 | + | |
| 676 | + </menu> | |
| 677 | + | |
| 678 | + <menu id="popup-over-selected-area"> | |
| 679 | + | |
| 680 | + <submenu> | |
| 681 | + <attribute name='label' translatable='yes'>_Edit</attribute> | |
| 682 | + | |
| 683 | + <section> | |
| 684 | + | |
| 685 | + <item> | |
| 686 | + <attribute name="label" translatable="yes">Copy</attribute> | |
| 687 | + <attribute name="action">win.copy</attribute> | |
| 688 | + </item> | |
| 689 | + | |
| 690 | + <item> | |
| 691 | + <attribute name="label" translatable="yes">Append to copy</attribute> | |
| 692 | + <attribute name="action">win.copy-append</attribute> | |
| 693 | + </item> | |
| 694 | + | |
| 695 | + <item> | |
| 696 | + <attribute name="label" translatable="yes">Copy as text</attribute> | |
| 697 | + <attribute name="action">win.copy-text</attribute> | |
| 698 | + </item> | |
| 699 | + | |
| 700 | + <item> | |
| 701 | + <attribute name="label" translatable="yes">Copy as table</attribute> | |
| 702 | + <attribute name="action">win.copy-table</attribute> | |
| 703 | + </item> | |
| 704 | + | |
| 705 | + <item> | |
| 706 | + <attribute name="label" translatable="yes">Copy as HTML</attribute> | |
| 707 | + <attribute name="action">win.copy-html</attribute> | |
| 708 | + </item> | |
| 709 | + | |
| 710 | + <item> | |
| 711 | + <attribute name="label" translatable="yes">Copy as image</attribute> | |
| 712 | + <attribute name="action">win.copy-pixbuff</attribute> | |
| 713 | + </item> | |
| 714 | + | |
| 715 | + <item> | |
| 716 | + <attribute name="label" translatable="yes">Cut</attribute> | |
| 717 | + <attribute name="action">win.cut</attribute> | |
| 718 | + </item> | |
| 719 | + | |
| 720 | + </section> | |
| 721 | + | |
| 722 | + <section> | |
| 723 | + | |
| 724 | + <item> | |
| 725 | + <attribute name="label" translatable="yes">Clear</attribute> | |
| 726 | + <attribute name="action">win.clear</attribute> | |
| 727 | + </item> | |
| 728 | + | |
| 729 | + <item> | |
| 730 | + <attribute name="label" translatable="yes">Erase input</attribute> | |
| 731 | + <attribute name="action">win.erase-input</attribute> | |
| 732 | + </item> | |
| 733 | + | |
| 734 | + <item> | |
| 735 | + <attribute name="label" translatable="yes">Delete Field</attribute> | |
| 736 | + <attribute name="action">win.delete-field</attribute> | |
| 737 | + </item> | |
| 738 | + | |
| 739 | + <item> | |
| 740 | + <attribute name="label" translatable="yes">Erase to end of field</attribute> | |
| 741 | + <attribute name="action">win.erase-eof</attribute> | |
| 742 | + </item> | |
| 743 | + | |
| 744 | + <item> | |
| 745 | + <attribute name="label" translatable="yes">Erase to end of line</attribute> | |
| 746 | + <attribute name="action">win.erase-eol</attribute> | |
| 747 | + </item> | |
| 748 | + | |
| 749 | + </section> | |
| 750 | + | |
| 751 | + </submenu> | |
| 752 | + | |
| 753 | + <submenu> | |
| 754 | + | |
| 755 | + <attribute name='label' translatable='yes'>Options</attribute> | |
| 756 | + | |
| 757 | + <section> | |
| 758 | + | |
| 759 | + <item> | |
| 760 | + <attribute name="label" translatable="yes">Select by rectangles</attribute> | |
| 761 | + <attribute name="action">win.rectselect</attribute> | |
| 762 | + </item> | |
| 763 | + | |
| 764 | + </section> | |
| 765 | + | |
| 766 | + <section> | |
| 767 | + | |
| 768 | + <item> | |
| 769 | + <attribute name="label" translatable="yes">Show toolbar</attribute> | |
| 770 | + <attribute name="action">win.toolbar</attribute> | |
| 771 | + </item> | |
| 772 | + | |
| 773 | + <item> | |
| 774 | + <attribute name="label" translatable="yes">Show menu</attribute> | |
| 775 | + <attribute name="action">win.menubar</attribute> | |
| 776 | + </item> | |
| 777 | + | |
| 778 | + <item> | |
| 779 | + <attribute name="label" translatable="yes">Full screen</attribute> | |
| 780 | + <attribute name="action">win.fullscreen</attribute> | |
| 781 | + </item> | |
| 782 | + | |
| 783 | + </section> | |
| 784 | + | |
| 785 | + </submenu> | |
| 786 | + | |
| 787 | + <section> | |
| 788 | + | |
| 789 | + <item> | |
| 790 | + <attribute name="label" translatable="yes">Save selected</attribute> | |
| 791 | + <attribute name="action">win.save-selected</attribute> | |
| 792 | + </item> | |
| 793 | + | |
| 794 | + <item> | |
| 795 | + <attribute name="label" translatable="yes">Print selected</attribute> | |
| 796 | + <attribute name="action">win.print-selected</attribute> | |
| 797 | + </item> | |
| 798 | + | |
| 799 | + <item> | |
| 800 | + <attribute name="label" translatable="yes">Unselect</attribute> | |
| 801 | + <attribute name="action">win.unselect</attribute> | |
| 802 | + </item> | |
| 803 | + | |
| 804 | + </section> | |
| 805 | + | |
| 806 | + <section> | |
| 807 | + <item> | |
| 808 | + <attribute name="label" translatable="yes">Disconnect</attribute> | |
| 809 | + <attribute name="action">win.disconnect</attribute> | |
| 810 | + </item> | |
| 811 | + | |
| 812 | + <item> | |
| 813 | + <attribute name="label" translatable="yes">Close window</attribute> | |
| 814 | + <attribute name="action">win.close</attribute> | |
| 815 | + </item> | |
| 816 | + </section> | |
| 817 | + | |
| 818 | + </menu> | |
| 819 | + | |
| 820 | + <menu id="popup-over-unselected-area"> | |
| 821 | + | |
| 822 | + <submenu> | |
| 823 | + | |
| 824 | + <attribute name='label' translatable='yes'>_Edit</attribute> | |
| 825 | + | |
| 826 | + <section> | |
| 827 | + | |
| 828 | + <item> | |
| 829 | + <attribute name="label" translatable="yes">Paste from clipboard</attribute> | |
| 830 | + <attribute name="action">win.paste</attribute> | |
| 831 | + </item> | |
| 832 | + | |
| 833 | + <item> | |
| 834 | + <attribute name="label" translatable="yes">Paste next</attribute> | |
| 835 | + <attribute name="action">win.paste-next</attribute> | |
| 836 | + </item> | |
| 837 | + | |
| 838 | + <item> | |
| 839 | + <attribute name="label" translatable="yes">Paste from text file</attribute> | |
| 840 | + <attribute name="action">win.paste-file</attribute> | |
| 841 | + </item> | |
| 842 | + | |
| 843 | + </section> | |
| 844 | + | |
| 845 | + <section> | |
| 846 | + | |
| 847 | + <item> | |
| 848 | + <attribute name="label" translatable="yes">Select all</attribute> | |
| 849 | + <attribute name="action">win.select-all</attribute> | |
| 850 | + </item> | |
| 851 | + | |
| 852 | + <item> | |
| 853 | + <attribute name="label" translatable="yes">Select Field</attribute> | |
| 854 | + <attribute name="action">win.select-field</attribute> | |
| 855 | + </item> | |
| 856 | + | |
| 857 | + <item> | |
| 858 | + <attribute name="label" translatable="yes">Reselect</attribute> | |
| 859 | + <attribute name="action">win.reselect</attribute> | |
| 860 | + </item> | |
| 861 | + | |
| 862 | + </section> | |
| 863 | + | |
| 864 | + <section> | |
| 865 | + | |
| 866 | + <item> | |
| 867 | + <attribute name="label" translatable="yes">Clear</attribute> | |
| 868 | + <attribute name="action">win.clear</attribute> | |
| 869 | + </item> | |
| 870 | + | |
| 871 | + <item> | |
| 872 | + <attribute name="label" translatable="yes">Erase input</attribute> | |
| 873 | + <attribute name="action">win.erase-input</attribute> | |
| 874 | + </item> | |
| 875 | + | |
| 876 | + <item> | |
| 877 | + <attribute name="label" translatable="yes">Delete Field</attribute> | |
| 878 | + <attribute name="action">win.delete-field</attribute> | |
| 879 | + </item> | |
| 880 | + | |
| 881 | + <item> | |
| 882 | + <attribute name="label" translatable="yes">Erase to end of field</attribute> | |
| 883 | + <attribute name="action">win.erase-eof</attribute> | |
| 884 | + </item> | |
| 885 | + | |
| 886 | + <item> | |
| 887 | + <attribute name="label" translatable="yes">Erase to end of line</attribute> | |
| 888 | + <attribute name="action">win.erase-eol</attribute> | |
| 889 | + </item> | |
| 890 | + | |
| 891 | + </section> | |
| 892 | + | |
| 893 | + </submenu> | |
| 894 | + | |
| 895 | + <submenu> | |
| 896 | + | |
| 897 | + <attribute name='label' translatable='yes'>Options</attribute> | |
| 898 | + | |
| 899 | + <section> | |
| 900 | + | |
| 901 | + <item> | |
| 902 | + <attribute name="label" translatable="yes">Cross hair cursor</attribute> | |
| 903 | + <attribute name="action">win.crosshair</attribute> | |
| 904 | + </item> | |
| 905 | + | |
| 906 | + <item> | |
| 907 | + <attribute name="label" translatable="yes">Use +/- for field navigation</attribute> | |
| 908 | + <attribute name="action">win.kpalternative</attribute> | |
| 909 | + </item> | |
| 910 | + | |
| 911 | + <item> | |
| 912 | + <attribute name="label" translatable="yes">Resize on alternate screen</attribute> | |
| 913 | + <attribute name="action">win.altscreen</attribute> | |
| 914 | + </item> | |
| 915 | + | |
| 916 | + <item> | |
| 917 | + <attribute name="label" translatable="yes">Alert sound</attribute> | |
| 918 | + <attribute name="action">win.beep</attribute> | |
| 919 | + </item> | |
| 920 | + | |
| 921 | + </section> | |
| 922 | + | |
| 923 | + <item> | |
| 924 | + <attribute name="label" translatable="yes">Monocase</attribute> | |
| 925 | + <attribute name="action">win.monocase</attribute> | |
| 926 | + </item> | |
| 927 | + | |
| 928 | + <item> | |
| 929 | + <attribute name="label" translatable="yes">Dynamic font spacing</attribute> | |
| 930 | + <attribute name="action">win.dynamic-font-spacing</attribute> | |
| 931 | + </item> | |
| 932 | + | |
| 933 | + <section> | |
| 934 | + | |
| 935 | + <item> | |
| 936 | + <attribute name="label" translatable="yes">Smart paste</attribute> | |
| 937 | + <attribute name="action">win.smartpaste</attribute> | |
| 938 | + </item> | |
| 939 | + | |
| 940 | + <item> | |
| 941 | + <attribute name="label" translatable="yes">Paste with left margin</attribute> | |
| 942 | + <attribute name="action">win.marginedpaste</attribute> | |
| 943 | + </item> | |
| 944 | + | |
| 945 | + <item> | |
| 946 | + <attribute name="label" translatable="yes">Blank Fill</attribute> | |
| 947 | + <attribute name="action">win.blankfill</attribute> | |
| 948 | + </item> | |
| 949 | + | |
| 950 | + </section> | |
| 951 | + | |
| 952 | + <section> | |
| 953 | + | |
| 954 | + <item> | |
| 955 | + <attribute name="label" translatable="yes">Full screen</attribute> | |
| 956 | + <attribute name="action">win.fullscreen</attribute> | |
| 957 | + </item> | |
| 958 | + | |
| 959 | + </section> | |
| 960 | + | |
| 961 | + </submenu> | |
| 962 | + | |
| 963 | + <submenu id="view-when-online-placeholder"> | |
| 964 | + | |
| 965 | + <attribute name='label' translatable='yes'>View</attribute> | |
| 966 | + | |
| 967 | + <item> | |
| 968 | + <attribute name="label" translatable="yes">Toolbar</attribute> | |
| 969 | + <attribute name="action">win.toolbar</attribute> | |
| 970 | + </item> | |
| 971 | + | |
| 972 | + <item> | |
| 973 | + <attribute name="label" translatable="yes">Top menu</attribute> | |
| 974 | + <attribute name="action">win.menubar</attribute> | |
| 975 | + </item> | |
| 976 | + | |
| 977 | + <item> | |
| 978 | + <attribute name="label" translatable="yes">Session Trace</attribute> | |
| 979 | + <attribute name="action">win.trace</attribute> | |
| 980 | + </item> | |
| 981 | + | |
| 982 | + </submenu> | |
| 983 | + | |
| 984 | + <section> | |
| 985 | + | |
| 986 | + <item> | |
| 987 | + <attribute name="label" translatable="yes">Save screen</attribute> | |
| 988 | + <attribute name="action">win.save-all</attribute> | |
| 989 | + </item> | |
| 990 | + | |
| 991 | + <item> | |
| 992 | + <attribute name="label" translatable="yes">Print screen</attribute> | |
| 993 | + <attribute name="action">win.print-all</attribute> | |
| 994 | + </item> | |
| 995 | + | |
| 996 | + <item> | |
| 997 | + <attribute name="label" translatable="yes">Send/Receive files</attribute> | |
| 998 | + <attribute name="action">win.file.transfer</attribute> | |
| 999 | + </item> | |
| 1000 | + | |
| 1001 | + </section> | |
| 1002 | + | |
| 1003 | + <section> | |
| 1004 | + | |
| 1005 | + <item> | |
| 1006 | + <attribute name="label" translatable="yes">Disconnect</attribute> | |
| 1007 | + <attribute name="action">win.disconnect</attribute> | |
| 1008 | + </item> | |
| 1009 | + | |
| 1010 | + <item> | |
| 1011 | + <attribute name="label" translatable="yes">Close window</attribute> | |
| 1012 | + <attribute name="action">win.close</attribute> | |
| 1013 | + </item> | |
| 1014 | + | |
| 1015 | + </section> | |
| 1016 | + | |
| 1017 | + </menu> | |
| 1018 | + | |
| 1019 | + <menu id="popup-over-oia"> | |
| 1020 | + | |
| 1021 | + <item> | |
| 1022 | + <attribute name="label" translatable="yes">Insert</attribute> | |
| 1023 | + <attribute name="action">win.insert</attribute> | |
| 1024 | + </item> | |
| 1025 | + | |
| 1026 | + <item> | |
| 1027 | + <attribute name="label" translatable="yes">Track Cursor</attribute> | |
| 1028 | + <attribute name="action">win.cursorpos</attribute> | |
| 1029 | + </item> | |
| 1030 | + | |
| 1031 | + <item> | |
| 1032 | + <attribute name="label" translatable="yes">Alert sound</attribute> | |
| 1033 | + <attribute name="action">win.beep</attribute> | |
| 1034 | + </item> | |
| 1035 | + | |
| 1036 | + </menu> | |
| 1037 | + | |
| 1038 | + <menu id="popup-when-offline"> | |
| 1039 | + | |
| 1040 | + <submenu> | |
| 1041 | + | |
| 1042 | + <attribute name='label' translatable='yes'>Options</attribute> | |
| 1043 | + | |
| 1044 | + <item> | |
| 1045 | + <attribute name="label" translatable="yes">Dynamic font spacing</attribute> | |
| 1046 | + <attribute name="action">win.dynamic-font-spacing</attribute> | |
| 1047 | + </item> | |
| 1048 | + | |
| 1049 | + <item> | |
| 1050 | + <attribute name="label" translatable="yes">Full screen</attribute> | |
| 1051 | + <attribute name="action">win.fullscreen</attribute> | |
| 1052 | + </item> | |
| 1053 | + | |
| 1054 | + <submenu> | |
| 1055 | + | |
| 1056 | + <attribute name="label" translatable="yes">Screen size</attribute> | |
| 1057 | + | |
| 1058 | + <item> | |
| 1059 | + <attribute name="label" translatable="yes">Model 2 - 80x24</attribute> | |
| 1060 | + <attribute name="action">win.model-number</attribute> | |
| 1061 | + <attribute name="target">2</attribute> | |
| 1062 | + </item> | |
| 1063 | + <item> | |
| 1064 | + <attribute name="label" translatable="yes">Model 3 - 80x32</attribute> | |
| 1065 | + <attribute name="action">win.model-number</attribute> | |
| 1066 | + <attribute name="target">3</attribute> | |
| 1067 | + </item> | |
| 1068 | + <item> | |
| 1069 | + <attribute name="label" translatable="yes">Model 4 - 80x43</attribute> | |
| 1070 | + <attribute name="action">win.model-number</attribute> | |
| 1071 | + <attribute name="target">4</attribute> | |
| 1072 | + </item> | |
| 1073 | + <item> | |
| 1074 | + <attribute name="label" translatable="yes">Model 5 - 132x27</attribute> | |
| 1075 | + <attribute name="action">win.model-number</attribute> | |
| 1076 | + <attribute name="target">5</attribute> | |
| 1077 | + </item> | |
| 1078 | + | |
| 1079 | + </submenu> | |
| 1080 | + | |
| 1081 | + </submenu> | |
| 1082 | + | |
| 1083 | + <submenu id="view-when-offline-placeholder"> | |
| 1084 | + | |
| 1085 | + <attribute name='label' translatable='yes'>View</attribute> | |
| 1086 | + | |
| 1087 | + <item> | |
| 1088 | + <attribute name="label" translatable="yes">Toolbar</attribute> | |
| 1089 | + <attribute name="action">win.toolbar</attribute> | |
| 1090 | + </item> | |
| 1091 | + | |
| 1092 | + <item> | |
| 1093 | + <attribute name="label" translatable="yes">Main menu</attribute> | |
| 1094 | + <attribute name="action">win.menubar</attribute> | |
| 1095 | + </item> | |
| 1096 | + | |
| 1097 | + <item> | |
| 1098 | + <attribute name="label" translatable="yes">Session Trace</attribute> | |
| 1099 | + <attribute name="action">win.trace</attribute> | |
| 1100 | + </item> | |
| 1101 | + | |
| 1102 | + </submenu> | |
| 1103 | + | |
| 1104 | + <section> | |
| 1105 | + | |
| 1106 | + <item> | |
| 1107 | + <attribute name="label" translatable="yes">_Connect</attribute> | |
| 1108 | + <attribute name="action">win.connect</attribute> | |
| 1109 | + </item> | |
| 1110 | + | |
| 1111 | + <item> | |
| 1112 | + <attribute name="label" translatable="yes">Session preferences</attribute> | |
| 1113 | + <attribute name="action">win.session.properties</attribute> | |
| 1114 | + </item> | |
| 1115 | + | |
| 1116 | + | |
| 1117 | + <item> | |
| 1118 | + <attribute name="label" translatable="yes">Close window</attribute> | |
| 1119 | + <attribute name="action">win.close</attribute> | |
| 1120 | + </item> | |
| 1121 | + | |
| 1122 | + </section> | |
| 1123 | + | |
| 1124 | + </menu> | |
| 1125 | + | |
| 1126 | +</interface> | ... | ... |